commit | aaf302d4c65307f26c35c1566c8a6da0b6201ea5 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Thu Dec 16 02:07:49 2021 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Thu Dec 16 02:07:49 2021 +0000 |
tree | b2513b0cc900b4405606bddfd9c5de9075a89a13 | |
parent | e395f4a3f2e382088aad7c24f02ae023c4d58ee1 [diff] | |
parent | 3355c4646e1bac66db8ee525cad577b658edcf83 [diff] |
Snap for 8006021 from 3355c4646e1bac66db8ee525cad577b658edcf83 to tm-release Change-Id: I08621df3818ee9c3123f7fd3d04baa12a553f4cf
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: