commit | 33f6b22e6c1c7518f9dac55476904e56969f3a74 | [log] [tgz] |
---|---|---|
author | Matthew Maurer <[email protected]> | Thu May 26 12:58:54 2022 -0700 |
committer | Matthew Maurer <[email protected]> | Thu May 26 12:58:54 2022 -0700 |
tree | 015b7d0dfbff8f5cd751b735deabac2121d28db5 | |
parent | 132eccb8457b0bcf913edee0173b91821599a064 [diff] |
Update TEST_MAPPING Test: None Bug: 233924440 Change-Id: I0670eaec2d71992cab6a428ee6a28e2664862160
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: