async_zip 0.0.17

An asynchronous ZIP archive reading/writing crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) 2021 Harry [Majored] [hello@majored.pw]
// MIT License (https://github.com/Majored/rs-async-zip/blob/main/LICENSE)

pub(crate) mod attribute;
pub(crate) mod compression;
pub(crate) mod consts;
pub(crate) mod extra_field;
pub(crate) mod header;
pub(crate) mod parse;
pub(crate) mod version;

pub use compression::Compression;