commit | fb023151a8e235fa0586dd39b3f8062a360a515e | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Tue Jun 22 00:46:12 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Jun 22 00:46:12 2021 +0000 |
tree | c656a09ca55d8be817ce207710747a03abebdaed | |
parent | 2f084162167e8953d07ff7ba17b999b737a9e05a [diff] | |
parent | 4558110cf1723a139cbfaa23f42388c0b435855c [diff] |
Upgrade rust/crates/zip to 0.5.13 am: 4558110cf1 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/1742524 Change-Id: I8107b1bbc9fe391deda3ed230707f52a5d24ee9e
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: