commit | 79e47c51d49170c9581f46049e0e0f194ad86d8c | [log] [tgz] |
---|---|---|
author | Matthew Maurer <[email protected]> | Thu Mar 09 19:08:17 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Mar 09 19:08:17 2023 +0000 |
tree | c33e9de21d4d35ffbe2ced3c669a64d6fbfd68a5 | |
parent | df219336b1d17ec6ce97313ea9561f2d8f123ef2 [diff] | |
parent | 3954ea2e3580dc0a244262e6a52d6ce0e1c54c02 [diff] |
Make zip available to product and vendor am: 10917f63ba am: 423af86c1e am: e6f80ff669 am: 493fe954f7 am: 3954ea2e35 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/2474830 Change-Id: Ib1067b684c83fc29c0e5ae33e0f0c69a254c414a Signed-off-by: Automerger Merge Worker <[email protected]>
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