Bug fix for deprecation suppression

This commit is contained in:
Chris Hennick 2023-05-01 10:18:03 -07:00
parent 1543b64f30
commit 188433e7e9
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -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,