tag | 6e989add27b5894c4746cc4ec7af309f7d31d535 | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Fri May 26 06:21:28 2023 -0700 |
object | 8be3d87ea11ac2deb4aa256f02b6a6939bf905df |
aml_sdk_331412000
commit | 8be3d87ea11ac2deb4aa256f02b6a6939bf905df | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 10 07:05:50 2022 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 10 07:05:50 2022 +0000 |
tree | 5488828d7446ad70a03375c5837022ef5b4e32e4 | |
parent | cf81ec0ae672a86121edc2fbf981309a4c1839a1 [diff] | |
parent | fe147278404dc350dc3ea8280405f8ec3f2a95bb [diff] |
Snap for 8564071 from fe147278404dc350dc3ea8280405f8ec3f2a95bb to mainline-sdkext-release Change-Id: I7f4e84068a7143b9107e85c41fa0bfb7d449deec
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: