commit | 99e93e32f726ef2e6e173644d23d3b69bf43fd5e | [log] [tgz] |
---|---|---|
author | David Brazdil <[email protected]> | Tue Jan 24 18:55:37 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Jan 24 18:55:37 2023 +0000 |
tree | 24636bde04634cfddc7a758c52c92984a0298c4f | |
parent | 8410a64de4bdc23c6720c14e482b1b51bbc469e9 [diff] | |
parent | ddc7ab29841ddc5de4cbd16472f75e57211cd233 [diff] |
Update TEST_MAPPING am: 7ae5487351 am: dfd90a64f5 am: ddc7ab2984 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/2399305 Change-Id: Ic95a96f25d8d8fe4709390dd9c0e87656ad6f187 Signed-off-by: Automerger Merge Worker <[email protected]>
PSA: This version of the ZIP crate will not gain any new features, and will only be updated if major security issues are found.
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.3"
Without the default features:
[dependencies] zip = { version = "0.6.3", 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