commit | f01f6065f89292ff30df7a0633e295a038c81f4e | [log] [tgz] |
---|---|---|
author | James Farrell <jamesfarrell@google.com> | Wed May 22 23:16:04 2024 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed May 22 23:16:04 2024 +0000 |
tree | a9c0c33ab9fad683d5beec1376ed16b919d378a4 | |
parent | 8b9a7ca51a2779d369cbcdb924e768a309b6801d [diff] | |
parent | ebaeea3cfdf3dbb62d06c43427c0ea1cc4a51e08 [diff] |
Update Android.bp by running cargo_embargo am: ebaeea3cfd Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/3095333 Change-Id: I2b9346f3bb7f27e76de5a44e420bfc201742c380 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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