tag | fc387cf28db3d46d76c2757b52db95a3748b2660 | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Wed Apr 12 14:25:04 2023 -0700 |
object | 423af86c1e35c377d4ab1a67dbfdda120a57da4a |
Android U Beta 1 GPL
commit | 423af86c1e35c377d4ab1a67dbfdda120a57da4a | [log] [tgz] |
---|---|---|
author | Matthew Maurer <mmaurer@google.com> | Thu Mar 09 15:12:59 2023 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Thu Mar 09 15:12:59 2023 +0000 |
tree | c33e9de21d4d35ffbe2ced3c669a64d6fbfd68a5 | |
parent | 1c0575d33a169d2bcec062f463763974c45b3846 [diff] | |
parent | 10917f63bac21e1a5a1188c5a3ebb3b125ef88cb [diff] |
Make zip available to product and vendor am: 10917f63ba Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/2474830 Change-Id: Ia4c667de67d2e4a7cd403da3988ca86d520cfa3b 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.4"
Without the default features:
[dependencies] zip = { version = "0.6.4", 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.59.0. When adding features, we will follow these guidelines:
See the examples directory for:
Fuzzing support is through cargo fuzz. To install cargo fuzz:
cargo install cargo-fuzz
To list fuzz targets:
cargo +nightly fuzz list
To start fuzzing zip extraction:
cargo +nightly fuzz run fuzz_read