commit | 79201d46fec5fd53e6549ef0a57e9907ca6b01e0 | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Tue Aug 24 20:20:58 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Aug 24 20:20:58 2021 +0000 |
tree | 7a96bcbac3d47313d70c42f5b7ecbdb5c2988895 | |
parent | ffb6f34b396f5edfac0f680eb0763a9ad8f3fc30 [diff] | |
parent | 10dba2360b0b5f6fc2e1804cf8baf932ef88e3d3 [diff] |
Update TEST_MAPPING am: b527126c7d am: a25d5d30ad am: 1579ea897b am: 2bd3e8c85a am: 10dba2360b Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/1805841 Change-Id: If14af8c5d0d32439870f9bc60d38c2bbaf413889
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: