From c969cd644ab0a177226023b3c50eb45b1d02f8dc Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 1 May 2023 10:26:24 -0700 Subject: [PATCH] Bug fix: treat Unsupported as not deprecated in fuzzing config --- src/compression.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/compression.rs b/src/compression.rs index f4fe0df0..ad7ac892 100644 --- a/src/compression.rs +++ b/src/compression.rs @@ -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)]