commit | 9ff4d60c93f5f0ba4fe8848d4b120e38633309ee | [log] [tgz] |
---|---|---|
author | David LeGare <[email protected]> | Wed Apr 13 23:08:50 2022 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Apr 13 23:08:50 2022 +0000 |
tree | 5488828d7446ad70a03375c5837022ef5b4e32e4 | |
parent | 3355c4646e1bac66db8ee525cad577b658edcf83 [diff] | |
parent | 3dd8b2b4380149fb657c4fdbdf70837ccdfdf05b [diff] |
Upgrade rust/crates/zip to 0.6.2 am: 132eccb845 am: 1b6000bc1c am: 3903686638 am: 3dd8b2b438 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/2061160 Change-Id: Id9f98bd8e815c705bc7f7ef7f78be692d57b72f8 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: