commit | ce68cede4c4ad6cc6638b7cbfda1b91b887404e4 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Thu Sep 19 01:15:11 2024 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Thu Sep 19 01:15:11 2024 +0000 |
tree | f1111cb22f711a4055f7e2b3a4cacda91162128e | |
parent | b1e4656dc4cb0405d4cdc711e26e85c249c946d6 [diff] | |
parent | bdab0bfab8e84486d3631d44a7f09928ffd77c9e [diff] |
Snap for 12386553 from bdab0bfab8e84486d3631d44a7f09928ffd77c9e to sdk-release Change-Id: I23fd4dfcccd78cc787143bab851f0195ef7f18a2
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"
Without the default features:
[dependencies] zip = { version = "0.6.6", 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