1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (c) 2021-2022 Harry [Majored] [hello@majored.pw]
// MIT License (https://github.com/Majored/rs-async-zip/blob/main/LICENSE)
//! An asynchronous ZIP archive reading/writing crate powered by `futures-rs`.
//!
//! Forked from [`rs-async-zip`](https://github.com/Majored/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](https://github.com/bancek/rs-async-zip-futures/blob/main/SPECIFICATION.md) compliance.
//!
//! ## Installation
//!
//! ```toml
//! [dependencies]
//! async_zip_futures = { version = "0.0.13", features = ["full"] }
//! ```
//!
//! ### Feature Flags
//! - `full` - Enables all below features.
//! - `chrono` - Enables support for parsing dates via `chrono`.
//!
//! [Read more.](https://github.com/bancek/rs-async-zip-futures)
pub
pub
pub
pub
pub use crateAttributeCompatibility;
pub use crateCompression;
pub use crateZipDateTime;
pub use crate;