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