Crates.io | binstall-zip |
lib.rs | binstall-zip |
version | 0.6.4 |
source | src |
created_at | 2022-09-12 08:05:16.674651 |
updated_at | 2022-11-08 00:29:28.879632 |
description | Library to support the reading and writing of zip files. |
homepage | |
repository | https://github.com/zip-rs/zip.git |
max_upload_size | |
id | 663548 |
size | 256,464 |
This fork of zip is no longer maintained, please use upstream zip-rs/zip instead
PSA: This version of the ZIP crate will not gain any new features, and will only be updated if major security issues are found.
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.6.2"
Without the default features:
[dependencies]
zip = { version = "0.6.2", default-features = false }
The features available are:
aes-crypto
: Enables decryption of files which were encrypted with AES. Supports AE-1 and AE-2 methods.deflate
: Enables the deflate compression algorithm, which is the default for zip files.bzip2
: Enables the BZip2 compression algorithm.time
: Enables features using the time crate.zstd
: Enables the Zstandard compression algorithm.All of these are enabled by default.
Our current Minimum Supported Rust Version is 1.57.0. When adding features, we will follow these guidelines:
See the examples directory for:
Fuzzing support is through cargo fuzz. To install cargo fuzz:
cargo install cargo-fuzz
To list fuzz targets:
cargo +nightly fuzz list
To start fuzzing zip extraction:
cargo +nightly fuzz run fuzz_read