forked from Majored/rs-async-zip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (33 loc) · 1.17 KB
/
Cargo.toml
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
[package]
name = "async_zip"
version = "0.0.9"
edition = "2021"
authors = ["Harry [[email protected]]"]
repository = "https://github.com/Majored/rs-async-zip"
description = "An asynchronous ZIP archive reading/writing crate."
readme = "README.md"
license = "MIT"
documentation = "https://docs.rs/async_zip/"
homepage = "https://github.com/Majored/rs-async-zip"
keywords = ["async", "zip", "archive", "tokio"]
categories = ["asynchronous", "compression"]
[features]
full = ["date", "fs", "crc", "deflate", "bzip2", "lzma", "zstd", "xz"]
date = ["chrono"]
fs = []
crc = []
deflate = ["async-compression/deflate"]
bzip2 = ["async-compression/bzip2"]
lzma = ["async-compression/lzma"]
zstd = ["async-compression/zstd"]
xz = ["async-compression/xz"]
[dependencies]
crc32fast = "1.3.2"
thiserror = "1.0.37"
tokio = { version = "1.21.2", features = ["io-util", "fs"] }
pin-project = "1.0.12"
async-compression = { version = "0.3.15", default-features = false, features = ["tokio"], optional = true }
chrono = { version = "0.4.22", default-features = false, features = ["clock"], optional = true}
[dev-dependencies]
sanitize-filename = "0.4.0"
tokio = { version = "1.21.2", features = ["full"] }