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)]
|
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
|
||||||
#[cfg_attr(fuzzing, derive(arbitrary::Arbitrary))]
|
#[cfg_attr(fuzzing, derive(arbitrary::Arbitrary))]
|
||||||
#[non_exhaustive]
|
#[non_exhaustive]
|
||||||
#[allow(deprecated)]
|
|
||||||
pub enum CompressionMethod {
|
pub enum CompressionMethod {
|
||||||
/// Store the file as is
|
/// Store the file as is
|
||||||
Stored,
|
Stored,
|
||||||
|
@ -37,7 +36,7 @@ pub enum CompressionMethod {
|
||||||
#[cfg(feature = "zstd")]
|
#[cfg(feature = "zstd")]
|
||||||
Zstd,
|
Zstd,
|
||||||
/// Unsupported compression method
|
/// 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),
|
Unsupported(u16),
|
||||||
}
|
}
|
||||||
#[allow(deprecated, missing_docs)]
|
#[allow(deprecated, missing_docs)]
|
||||||
|
|
Loading…
Add table
Reference in a new issue