diff --git a/src/compression.rs b/src/compression.rs index ad7ac892..1e9ae18c 100644 --- a/src/compression.rs +++ b/src/compression.rs @@ -36,7 +36,10 @@ pub enum CompressionMethod { #[cfg(feature = "zstd")] Zstd, /// Unsupported compression method - #[cfg_attr(not(fuzzing), 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)]