commit | 0799962a37720ffcd000710a5f711b60de530b38 | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Mon Nov 29 14:06:02 2021 -0800 |
committer | Joel Galenson <[email protected]> | Fri Dec 10 15:33:47 2021 -0800 |
tree | b2513b0cc900b4405606bddfd9c5de9075a89a13 | |
parent | ed5c3c2884259b3319d0feb7123861441dd479e5 [diff] |
Refresh Android.bp, cargo2android.json, TEST_MAPPING. Test: None Change-Id: I86c031c7415def11310a902b8ac0c6886d6f948e
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: