commit | 4558110cf1723a139cbfaa23f42388c0b435855c | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Mon Jun 21 14:24:55 2021 -0700 |
committer | Joel Galenson <[email protected]> | Mon Jun 21 14:24:55 2021 -0700 |
tree | c656a09ca55d8be817ce207710747a03abebdaed | |
parent | 2f084162167e8953d07ff7ba17b999b737a9e05a [diff] |
Upgrade rust/crates/zip to 0.5.13 Test: make Change-Id: I88a94ddcb8db0f4b7196117a9e08832a1e5b99ca
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: