commit | 51bc2dc1871a51ce689b2692da279ce53d710b08 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Wed Oct 20 14:56:56 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Oct 20 14:56:56 2021 +0000 |
tree | a5fec21321172a0109182cc229868d2dbb3c7b8d | |
parent | 10dba2360b0b5f6fc2e1804cf8baf932ef88e3d3 [diff] | |
parent | f65402367edbd8a60c56352632992b9391d48568 [diff] |
Enable Tests am: a97fea0c04 am: 88194ffe28 am: d667581f0f am: f65402367e Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/1863754 Change-Id: I16015fd0b512679e052931a534d0e2d24d298091
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: