tag | 331a4aa96009baa11d1913519cd2eb87b53fdcbe | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Fri May 26 06:24:11 2023 -0700 |
object | 3dd8b2b4380149fb657c4fdbdf70837ccdfdf05b |
t_frc_odp_330442040
commit | 3dd8b2b4380149fb657c4fdbdf70837ccdfdf05b | [log] [tgz] |
---|---|---|
author | David LeGare <legare@google.com> | Wed Apr 13 22:46:24 2022 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Apr 13 22:46:24 2022 +0000 |
tree | 5488828d7446ad70a03375c5837022ef5b4e32e4 | |
parent | 3355c4646e1bac66db8ee525cad577b658edcf83 [diff] | |
parent | 3903686638ba21de4c640890140ab8f7f14a1058 [diff] |
Upgrade rust/crates/zip to 0.6.2 am: 132eccb845 am: 1b6000bc1c am: 3903686638 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/2061160 Change-Id: Ibaeed2c1ec9ac0a81b79005f8568d7ae91aa1b0a Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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: