commit | e3f909dfee27c3f316f3de0291a7db9b8b7fed5c | [log] [tgz] |
---|---|---|
author | Andrew Walbran <[email protected]> | Fri Nov 17 17:54:12 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Fri Nov 17 17:54:12 2023 +0000 |
tree | 009986d2124b05dc88e0ddcc7e8bc248bb6d2724 | |
parent | 4f1dc344ca9ebef00c5c9008f623988a89ae18d2 [diff] | |
parent | 2dce2ab7b545865a86e085bf2275932a63fffc98 [diff] |
Migrate to cargo_embargo. am: 374ead5cc2 am: 99470abf00 am: 2dce2ab7b5 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/2836476 Change-Id: Ib3adb42946cbed32131189dc5adc27d5e664fff7 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