commit | 3355c4646e1bac66db8ee525cad577b658edcf83 | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Wed Dec 15 18:06:40 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Dec 15 18:06:40 2021 +0000 |
tree | b2513b0cc900b4405606bddfd9c5de9075a89a13 | |
parent | 86b5ab058e613ca327a0b3e4609fefbb7cc5ab19 [diff] | |
parent | 2095b106a168c52e7e17543d3aef87545666aa4e [diff] |
Merge "Refresh Android.bp, cargo2android.json, TEST_MAPPING." am: b87b08d3a1 am: 38a948c249 am: 699d5b78e4 am: 2095b106a1 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/1912821 Change-Id: Ic6264b9272a87429c77a5a19629add9d498e0c69
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.5"
Without the default features:
[dependencies] zip = { version = "0.5", default-features = false }
The features available are:
deflate
: Enables the deflate compression algorithm, which is the default for zipfilesbzip2
: Enables the BZip2 compression algorithm.time
: Enables features using the time crate.All of these are enabled by default.
Our current Minimum Supported Rust Version is 1.36.0. When adding features, we will follow these guidelines:
See the examples directory for: