| commit | f540bc52d38fa68e90cb6e9597c070c937736d5b | [log] [tgz] | 
|---|---|---|
| author | Jeff Vander Stoep <jeffv@google.com> | Wed Feb 22 00:18:08 2023 +0000 | 
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Feb 22 00:18:08 2023 +0000 | 
| tree | a721f77e22af15dac2fed21607dfc4435f077dd5 | |
| parent | f20352e03f57ea89583f34a6c30e877a85243abf [diff] | |
| parent | c28e55deb415b942fcf3f32d0caee7f718b03994 [diff] | 
Upgrade zip to 0.6.4 am: 486ff5ab1f am: 1c0575d33a am: 2689f66a20 am: c28e55deb4 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/2443201 Change-Id: I71ce6f13519b8bc1a68f2cee617982cb33436eb7 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.4"
Without the default features:
[dependencies] zip = { version = "0.6.4", 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.59.0. When adding features, we will follow these guidelines:
See the examples directory for:
Fuzzing support is through cargo fuzz. To install cargo fuzz:
cargo install cargo-fuzz
To list fuzz targets:
cargo +nightly fuzz list
To start fuzzing zip extraction:
cargo +nightly fuzz run fuzz_read