fix: Make Stored the default compression method if Deflated isn't available, so that zip files are readable by as much software as possible

This commit is contained in:
Chris Hennick 2024-05-06 13:00:29 -07:00
parent c8d1be86b3
commit eb4777c129
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -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;
}
}