commit | d667581f0fd985798a49bf40987a6d34e16efa54 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Wed Oct 20 14:25:59 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Oct 20 14:25:59 2021 +0000 |
tree | a5fec21321172a0109182cc229868d2dbb3c7b8d | |
parent | 1579ea897ba273184cca54fbe71311c8a2b01540 [diff] | |
parent | 88194ffe28f4f9dfedb9a076e9c206d6ad429061 [diff] |
Enable Tests am: a97fea0c04 am: 88194ffe28 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/1863754 Change-Id: I2a4988cfe058db3f93aa10360dfeedba406e13f4
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: