tag | fbc1cbedf757f095ad04057c058d7be2988be08a | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Fri May 26 06:23:32 2023 -0700 |
object | fd2a91e5423a1e61ba994c22c65560e5e8516941 |
aml_wif_331710030
commit | fd2a91e5423a1e61ba994c22c65560e5e8516941 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 10 07:06:19 2022 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 10 07:06:19 2022 +0000 |
tree | 5488828d7446ad70a03375c5837022ef5b4e32e4 | |
parent | cf81ec0ae672a86121edc2fbf981309a4c1839a1 [diff] | |
parent | fe147278404dc350dc3ea8280405f8ec3f2a95bb [diff] |
Snap for 8564071 from fe147278404dc350dc3ea8280405f8ec3f2a95bb to mainline-wifi-release Change-Id: I638b198d844a47a13aabf5b64f08f995eaf0e6d6
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: