tag | fcb705a6c57b907bb72c9e2a1d444ab5a41d975b | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Fri May 26 06:22:11 2023 -0700 |
object | 6907f478f359ff7969734d56e1a0c95f447b8a95 |
aml_tet_331711040
commit | 6907f478f359ff7969734d56e1a0c95f447b8a95 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 10 07:10:40 2022 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 10 07:10:40 2022 +0000 |
tree | 5488828d7446ad70a03375c5837022ef5b4e32e4 | |
parent | cf81ec0ae672a86121edc2fbf981309a4c1839a1 [diff] | |
parent | fe147278404dc350dc3ea8280405f8ec3f2a95bb [diff] |
Snap for 8564071 from fe147278404dc350dc3ea8280405f8ec3f2a95bb to mainline-tethering-release Change-Id: I5ec42185c56f099d52f62e67371c304e5ae35576
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: