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:
parent
c8d1be86b3
commit
eb4777c129
1 changed files with 1 additions and 11 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue