Bug fix: treat Unsupported as not deprecated in fuzzing config
This commit is contained in:
parent
ffd1083ff4
commit
c969cd644a
1 changed files with 1 additions and 2 deletions
|
@ -13,7 +13,6 @@ use std::fmt;
|
|||
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
|
||||
#[cfg_attr(fuzzing, derive(arbitrary::Arbitrary))]
|
||||
#[non_exhaustive]
|
||||
#[allow(deprecated)]
|
||||
pub enum CompressionMethod {
|
||||
/// Store the file as is
|
||||
Stored,
|
||||
|
@ -37,7 +36,7 @@ pub enum CompressionMethod {
|
|||
#[cfg(feature = "zstd")]
|
||||
Zstd,
|
||||
/// Unsupported compression method
|
||||
#[deprecated(since = "0.5.7", note = "use the constants instead")]
|
||||
#[cfg_attr(not(fuzzing), deprecated(since = "0.5.7", note = "use the constants instead"))]
|
||||
Unsupported(u16),
|
||||
}
|
||||
#[allow(deprecated, missing_docs)]
|
||||
|
|
Loading…
Add table
Reference in a new issue