commit | 2095b106a168c52e7e17543d3aef87545666aa4e | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Wed Dec 15 17:27:08 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Dec 15 17:27:08 2021 +0000 |
tree | b2513b0cc900b4405606bddfd9c5de9075a89a13 | |
parent | 827ff36bbd86c2838c41c5f7c32e5552d83b1ab1 [diff] | |
parent | 699d5b78e47fa610a7bdb90448f13cfc9df8288f [diff] |
Merge "Refresh Android.bp, cargo2android.json, TEST_MAPPING." am: b87b08d3a1 am: 38a948c249 am: 699d5b78e4 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/1912821 Change-Id: I31042ddf6ca469dd971900485f9411ef9d5265a1
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: