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