From aa6adcb1c0c06d1fb1c28da2f0c8c584c48e2a11 Mon Sep 17 00:00:00 2001 From: Lireer Date: Sun, 30 Jan 2022 22:40:31 +0100 Subject: [PATCH] remove `CompressionMethod::Aes` enum variant --- src/compression.rs | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/compression.rs b/src/compression.rs index 603e6d8c..b27817fd 100644 --- a/src/compression.rs +++ b/src/compression.rs @@ -24,12 +24,6 @@ pub enum CompressionMethod { /// Compress the file using BZIP2 #[cfg(feature = "bzip2")] Bzip2, - /// Encrypted using AES. - /// - /// The actual compression method has to be taken from the AES extra data field - /// or from `ZipFileData`. - #[cfg(feature = "aes-crypto")] - Aes, /// Compress the file using ZStandard #[cfg(feature = "zstd")] Zstd, @@ -78,9 +72,10 @@ impl CompressionMethod { pub const JPEG: Self = CompressionMethod::Unsupported(96); pub const WAVPACK: Self = CompressionMethod::Unsupported(97); pub const PPMD: Self = CompressionMethod::Unsupported(98); - #[cfg(feature = "aes-crypto")] - pub const AES: Self = CompressionMethod::Aes; - #[cfg(not(feature = "aes-crypto"))] + /// Encrypted using AES. + /// + /// The actual compression method has to be taken from the AES extra data field + /// or from `ZipFileData`. pub const AES: Self = CompressionMethod::Unsupported(99); } impl CompressionMethod {