From 188433e7e949cf8c2d9e3756a77b0e4a45c0731c Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 1 May 2023 10:18:03 -0700 Subject: [PATCH] Bug fix for deprecation suppression --- src/compression.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/compression.rs b/src/compression.rs index 63fef1fa..f4fe0df0 100644 --- a/src/compression.rs +++ b/src/compression.rs @@ -11,8 +11,9 @@ use std::fmt; /// When creating ZIP files, you may choose the method to use with /// [`crate::write::FileOptions::compression_method`] #[derive(Copy, Clone, PartialEq, Eq, Debug)] -#[cfg_attr(fuzzing, derive(arbitrary::Arbitrary), allow(deprecated))] +#[cfg_attr(fuzzing, derive(arbitrary::Arbitrary))] #[non_exhaustive] +#[allow(deprecated)] pub enum CompressionMethod { /// Store the file as is Stored,