| commit | 2695d40adb47bf96fbf625244727759d814a715f | [log] [tgz] | 
|---|---|---|
| author | Treehugger Robot <treehugger-gerrit@google.com> | Wed Jun 15 18:53:58 2022 +0000 | 
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Jun 15 18:53:58 2022 +0000 | 
| tree | eacaaceae19ec12912d0a600b4471b18b81ffb73 | |
| parent | f0a1ed14316911d15870c76a4865b3788c015bac [diff] | |
| parent | b40dbf0b5f20d9e1cd2617585a0223c5d4269b38 [diff] | 
Merge "Update TEST_MAPPING"
PSA: This version of the ZIP crate will not gain any new features, and will only be updated if major security issues are found.
A zip library for rust which supports reading and writing of simple ZIP files.
Supported compression formats:
Currently unsupported zip extensions:
With all default features:
[dependencies] zip = "0.6.2"
Without the default features:
[dependencies] zip = { version = "0.6.2", default-features = false }
The features available are:
aes-crypto: Enables decryption of files which were encrypted with AES. Supports AE-1 and AE-2 methods.deflate: Enables the deflate compression algorithm, which is the default for zip files.bzip2: Enables the BZip2 compression algorithm.time: Enables features using the time crate.zstd: Enables the Zstandard compression algorithm.All of these are enabled by default.
Our current Minimum Supported Rust Version is 1.54.0. When adding features, we will follow these guidelines:
See the examples directory for: