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