commit | 827ff36bbd86c2838c41c5f7c32e5552d83b1ab1 | [log] [tgz] |
---|---|---|
author | Michał Brzeziński <[email protected]> | Wed Oct 20 19:23:06 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Oct 20 19:23:06 2021 +0000 |
tree | 7a96bcbac3d47313d70c42f5b7ecbdb5c2988895 | |
parent | 51bc2dc1871a51ce689b2692da279ce53d710b08 [diff] | |
parent | 12b0fca3ad3e0bb1517ad7596e479a3ef21bc4fd [diff] |
Revert "Enable Tests" am: ed5c3c2884 am: 5b1e00e961 am: d75a745742 am: 12b0fca3ad Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/1863760 Change-Id: I2e55e7b0a4f42da1227bb8072060d11c99bf6ae2
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: