From eb4777c129f7fd3d755a5a2623179fe17f680612 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Mon, 6 May 2024 13:00:29 -0700 Subject: [PATCH] fix: Make `Stored` the default compression method if `Deflated` isn't available, so that zip files are readable by as much software as possible --- src/compression.rs | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/src/compression.rs b/src/compression.rs index 1862c976..3dd6eced 100644 --- a/src/compression.rs +++ b/src/compression.rs @@ -148,17 +148,7 @@ impl Default for CompressionMethod { #[cfg(feature = "_deflate-any")] return CompressionMethod::Deflated; - #[cfg(all(not(feature = "_deflate-any"), feature = "bzip2"))] - return CompressionMethod::Bzip2; - - #[cfg(all( - not(feature = "_deflate-any"), - not(feature = "bzip2"), - feature = "zstd" - ))] - return CompressionMethod::Zstd; - - #[cfg(not(any(feature = "_deflate-any", feature = "bzip2", feature = "zstd")))] + #[cfg(not(feature = "_deflate-any"))] return CompressionMethod::Stored; } }