commit | 2f39578c495812736fe9c25823c29842528efb91 | [log] [tgz] |
---|---|---|
author | David LeGare <[email protected]> | Thu Apr 14 00:51:20 2022 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Apr 14 00:51:20 2022 +0000 |
tree | 5488828d7446ad70a03375c5837022ef5b4e32e4 | |
parent | b907760ec8007e41dfa3a9f9ca80788fa31ed9ec [diff] | |
parent | 79d556fd1ca387a5aff18e7c1796b35efec23f4b [diff] |
Upgrade rust/crates/zip to 0.6.2 am: 132eccb845 am: 1b6000bc1c am: 3903686638 am: 3dd8b2b438 am: 9ff4d60c93 am: 79d556fd1c Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/2061160 Change-Id: Ia80668ff07f60d567cd8a64e153de0311235ede1 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: