commit | ed5c3c2884259b3319d0feb7123861441dd479e5 | [log] [tgz] |
---|---|---|
author | Michał Brzeziński <[email protected]> | Wed Oct 20 16:53:03 2021 +0000 |
committer | Michał Brzeziński <[email protected]> | Wed Oct 20 17:45:33 2021 +0000 |
tree | 7a96bcbac3d47313d70c42f5b7ecbdb5c2988895 | |
parent | a97fea0c04e51474e75ae4cf88b1367537c29ca9 [diff] |
Revert "Enable Tests" This reverts commit a97fea0c04e51474e75ae4cf88b1367537c29ca9. Reason for revert: DroidMonitor-triggered revert due to breakage, bug b/203667729 Bug: 203667729 Change-Id: Ida2d287d30629c92871fc72608694d42999ae5f0
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: