commit | 7d913ecb9c3acad2f988c03687a2202a15ca543b | [log] [tgz] |
---|---|---|
author | Matthew Maurer <[email protected]> | Tue May 31 19:05:56 2022 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue May 31 19:05:56 2022 +0000 |
tree | 015b7d0dfbff8f5cd751b735deabac2121d28db5 | |
parent | 2f39578c495812736fe9c25823c29842528efb91 [diff] | |
parent | 3e9616b400c2422b40d4fb94d88a82e73d4ff52f [diff] |
Update TEST_MAPPING am: 33f6b22e6c am: f0a1ed1431 am: e573b233db am: 770880810b am: 3e9616b400 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/2108616 Change-Id: I2261dfaf5f55bec698e97d54a04336e9faf46df8 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.2"
Without the default features:
[dependencies] zip = { version = "0.6.2", 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.54.0. When adding features, we will follow these guidelines:
See the examples directory for: