commit | 79eb7d1db358de61351a860a12def5948cb50414 | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Tue Jun 22 01:13:07 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Jun 22 01:13:07 2021 +0000 |
tree | c656a09ca55d8be817ce207710747a03abebdaed | |
parent | 063870f89878c85e87bfafe9559a1f35b4cfe1c3 [diff] | |
parent | 77bd9cf5d2431afb5734c6894ab0fc86f1807f85 [diff] |
Upgrade rust/crates/zip to 0.5.13 am: 4558110cf1 am: fb023151a8 am: 77bd9cf5d2 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/1742524 Change-Id: Idf6b272a4653ad5f86b8550cdb4f85e6f2747d85
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: