From 1543b64f309b7c3c95add7037fd8fb20962a3f70 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Mon, 1 May 2023 10:15:19 -0700 Subject: [PATCH] Fix a deprecation warning --- src/compression.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compression.rs b/src/compression.rs index 43366ed1..63fef1fa 100644 --- a/src/compression.rs +++ b/src/compression.rs @@ -11,7 +11,7 @@ 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))] +#[cfg_attr(fuzzing, derive(arbitrary::Arbitrary), allow(deprecated))] #[non_exhaustive] pub enum CompressionMethod { /// Store the file as is