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