commit | d84355a205073cd8358ba53406e1a02c3611bff2 | [log] [tgz] |
---|---|---|
author | Jooyung Han <[email protected]> | Mon Jun 28 19:10:31 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Mon Jun 28 19:10:31 2021 +0000 |
tree | b1b3ee764e296051896e6dc35028f1ec0df55382 | |
parent | fb023151a8e235fa0586dd39b3f8062a360a515e [diff] | |
parent | 24acaa4d4bca836907db9dfaac9230a256417ae0 [diff] |
make the lib available to com.android.virt am: 24acaa4d4b Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/zip/+/1748867 Change-Id: Ia8d1ac8e5061fc4ac9babcc2fc010ef4fb19516c
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: