Expand description
An asynchronous ZIP archive reading/writing crate powered by futures-rs
.
Forked from rs-async-zip
. tokio
was replaced with futures-rs
.
§Features
- Support for Stored compression method.
- Support for writing streams using data descriptors.
- Initial support for ZIP64 writing.
- Aims for reasonable specification compliance.
§Installation
[dependencies]
async_zip_futures = { version = "0.0.13", features = ["full"] }
§Feature Flags
full
- Enables all below features.chrono
- Enables support for parsing dates viachrono
.
Modules§
- error
- A module which holds relevant error reporting structures/types.
- write
- A module which supports writing ZIP files.
Structs§
- ZipDate
Time - A date and time stored as per the MS-DOS representation used by ZIP files.
- ZipEntry
- An immutable store of data about a ZIP entry.
- ZipEntry
Builder - A builder for
ZipEntry
.
Enums§
- Attribute
Compatibility - An attribute host compatibility supported by this crate.
- Compression
- A compression method supported by this crate.