| commit | b40b0b329eef88b8b32b667b0009bd309d1455bf | [log] [tgz] | 
|---|---|---|
| author | Treehugger Robot <treehugger-gerrit@google.com> | Wed Jun 15 22:28:21 2022 +0000 | 
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Jun 15 22:28:21 2022 +0000 | 
| tree | eacaaceae19ec12912d0a600b4471b18b81ffb73 | |
| parent | 3e9616b400c2422b40d4fb94d88a82e73d4ff52f [diff] | |
| parent | fc2c378054506430569da66532cdc88a2b72e65f [diff] | 
Merge "Update TEST_MAPPING" am: 2695d40adb am: 008b6e3167 am: 4e24e8da52 am: fc2c378054 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/2126168 Change-Id: I18dbe7fa1cc258bd9766742d2b1f9a2de56ef1c5 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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: