tag | 173f92c1c8379f8deb39a3b40aaa6cff041d5e97 | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Mon Jun 05 09:13:15 2023 -0700 |
object | 88d592e85f12270a23e036a40eae331bfc4a387b |
Android Security 13.0.0 Release 6 (10026668)
commit | 88d592e85f12270a23e036a40eae331bfc4a387b | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Thu Apr 14 01:07:23 2022 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Thu Apr 14 01:07:23 2022 +0000 |
tree | 5488828d7446ad70a03375c5837022ef5b4e32e4 | |
parent | aaf302d4c65307f26c35c1566c8a6da0b6201ea5 [diff] | |
parent | 3dd8b2b4380149fb657c4fdbdf70837ccdfdf05b [diff] |
Snap for 8451755 from 3dd8b2b4380149fb657c4fdbdf70837ccdfdf05b to tm-release Change-Id: I4424383da0df4d4138402aaa054987bb374dcf1c
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: