| commit | 5cc9eba161b7285e0d36e450a3f2600a33d66b20 | [log] [tgz] |
|---|---|---|
| author | Android Build Coastguard Worker <[email protected]> | Tue Aug 20 17:59:50 2024 +0000 |
| committer | Android Build Coastguard Worker <[email protected]> | Tue Aug 20 17:59:50 2024 +0000 |
| tree | 74b0bf74d94eed186bc0cae65fa4517a9e584493 | |
| parent | 02590eb75e23863766d961350daaec2ca7c66e55 [diff] | |
| parent | 3b12cca14008301cab181aa0c5576b432028a89e [diff] |
Snap for 12252487 from 3b12cca14008301cab181aa0c5576b432028a89e to simpleperf-release Change-Id: I645b92f4b7ecb7262cd6f940e2531edc1037fa0b
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