| commit | 5baa525f72e2eace28d60e8c7d9617e65cd503ef | [log] [tgz] |
|---|---|---|
| author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Thu Feb 01 11:57:53 2024 +0000 |
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Feb 01 11:57:53 2024 +0000 |
| tree | f22a08f84fabca451e486e8a3460064a9f75ec8c | |
| parent | 99470abf006d30ce5d56c1f9cd90a96e44ec2e64 [diff] | |
| parent | e3276d8a2b197611278f7552860757a1e221fec2 [diff] |
Merge "Upgrade zip to 0.6.6" into main
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