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