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