commit | 4f325467a709ad21dd23c2b46777f55a7f37263e | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Mon Jun 10 09:20:37 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Mon Jun 10 09:20:37 2024 +0000 |
tree | c58c943258747011f1213eef57ce4c0e6fc755cb | |
parent | 4435a874e1e515be8001d459f8af602527a5f6b7 [diff] | |
parent | dd280efe8e9605ee62320ac205ea901f1905ce74 [diff] |
Regenerate Android.bp patch with correct context so it applies cleanly am: 9637a04263 am: dd280efe8e Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/3118025 Change-Id: I70783cf219dd0f531f997cea6adf873359445dfe Signed-off-by: Automerger Merge Worker <[email protected]>
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"
Without the default features:
[dependencies] zip = { version = "0.6.6", 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