forked from quininer/unzrip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (36 loc) · 765 Bytes
/
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
40
41
42
43
44
45
46
47
[package]
name = "unzrip"
version = "0.1.0"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [ "zip-parser" ]
[features]
default = [ "zstd-sys" ]
zstd-sys = [ "zstd" ]
[dependencies]
zip-parser = { path = "zip-parser" }
# tools
anyhow = "1"
argh = "0.1"
bstr = "1"
# fast
rayon = "1"
memmap2 = "0.5"
# check
crc32fast = "1"
# compress
flate2 = "1"
zstd = { version = "0.12", features = [ "pkg-config" ], optional = true }
# encoding
encoding_rs = "0.8"
chardetng = "0.1"
# time
time = "0.3"
filetime = "0.2"
[dev-dependencies]
zip = { version = "0.6", default-features = false, features = [ "deflate" ] }
tempfile = "3"
assert_cmd = "2"
walkdir = "2"