commit | 4def21d3f396fcad55b86be3fed90b346ddc0d6f | [log] [tgz] |
---|---|---|
author | Xin Li <delphij@google.com> | Mon Apr 29 22:16:22 2024 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Apr 29 22:16:22 2024 +0000 |
tree | f22a08f84fabca451e486e8a3460064a9f75ec8c | |
parent | a6cbbf9b30f813c3aaf4a5447f201329e05addd3 [diff] | |
parent | 8b9a7ca51a2779d369cbcdb924e768a309b6801d [diff] |
[automerger skipped] Empty merge of Android 24Q2 Release (ab/11526283) to aosp-main-future am: 8b9a7ca51a -s ours am skip reason: Merged-In I780b82bcff15e6aa22e855404ff4d17f52bd080c with SHA-1 9c83ef0cdf is already in history Original change: https://googleplex-android-review.googlesource.com/c/platform/external/rust/crates/zip/+/27144526 Change-Id: Icd7287f072c8a521e8cbf0b7b7db1fb798e4b58b 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