tag | aee022d85d3c00c3556ac68f701255d2915c1e6f | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Fri May 26 06:22:52 2023 -0700 |
object | ee4e76cfa48df79252ca16010f1a0fb7507fa18d |
aml_uwb_331613010
commit | ee4e76cfa48df79252ca16010f1a0fb7507fa18d | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Thu Jun 09 07:13:28 2022 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Thu Jun 09 07:13:28 2022 +0000 |
tree | 5488828d7446ad70a03375c5837022ef5b4e32e4 | |
parent | 4b4f8b9240eb64255ae2de177c1ae5199ace2718 [diff] | |
parent | fe147278404dc350dc3ea8280405f8ec3f2a95bb [diff] |
Snap for 8701348 from fe147278404dc350dc3ea8280405f8ec3f2a95bb to mainline-uwb-release Change-Id: I6da15565b2da9b1fea7e6b748db47f9b3c709237
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: