Cargo Features

async_zip has no features set by default.

[dependencies]
async_zip = { version = "0.0.17", features = ["full", "full-wasm", "tokio", "tokio-fs", "deflate", "bzip2", "lzma", "zstd", "xz", "deflate64"] }
full = bzip2, chrono, deflate, deflate64, lzma, tokio-fs, xz, zstd
full-wasm = chrono, deflate, zstd

All features that are compatible with WASM

tokio tokio-fs? = tokio-util

Enables io-util of tokio

tests

Affects async_zip::tokio

tokio-fs full?

Enables fs of tokio

Affects read::fs

deflate full? full-wasm?

Enables deflate of async-compression

async-compression:

algorithms

bzip2 full?

Enables bzip2 of async-compression

lzma full?

Enables lzma of async-compression

zstd full? full-wasm?

Enables zstd of async-compression

xz full?

Enables xz of async-compression

deflate64 full?

Enables deflate64 of async-compression

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

async-compression bzip2? deflate? deflate64? lzma? xz? zstd?
chrono full? full-wasm?
tokio-util tokio?