commit | 789cadbc969d9fb7132e5e0e417db21988f5dd30 | [log] [tgz] |
---|---|---|
author | Jooyung Han <[email protected]> | Mon Jun 28 19:38:51 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Mon Jun 28 19:38:51 2021 +0000 |
tree | b1b3ee764e296051896e6dc35028f1ec0df55382 | |
parent | 79eb7d1db358de61351a860a12def5948cb50414 [diff] | |
parent | 9583dc1983498283b2f4a2b222b902f5b1d97b21 [diff] |
make the lib available to com.android.virt am: 24acaa4d4b am: d84355a205 am: 9583dc1983 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/1748867 Change-Id: Ib2af8fada6d70247213b16b1ede9a4ce696a3c8f
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: