forked from ouch-org/ouch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (55 loc) · 1.78 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "ouch"
version = "0.4.2"
authors = ["Vinícius Rodrigues Miguel <[email protected]>", "João M. Bezerra <[email protected]>"]
edition = "2021"
readme = "README.md"
repository = "https://github.com/ouch-org/ouch"
license = "MIT"
keywords = ["decompression", "compression", "cli"]
categories = ["command-line-utilities", "compression", "encoding"]
description = "A command-line utility for easily compressing and decompressing files and directories."
[dependencies]
atty = "0.2.14"
bstr = { version = "1.8.0", default-features = false, features = ["std"] }
bzip2 = "0.4.4"
clap = { version = "4.4.8", features = ["derive", "env"] }
filetime = "0.2.22"
flate2 = { version = "1.0.28", default-features = false }
fs-err = "2.9.0"
gzp = { version = "0.11.3", default-features = false, features = ["snappy_default"] }
ignore = "0.4.20"
libc = "0.2.150"
linked-hash-map = "0.5.6"
lz4_flex = "0.11.1"
once_cell = "1.18.0"
rayon = "1.8.0"
same-file = "1.0.6"
snap = "1.1.0"
tar = "0.4.40"
tempfile = "3.8.1"
time = { version = "0.3.30", default-features = false }
xz2 = "0.1.7"
zip = { version = "0.6.6", default-features = false, features = ["time"] }
zstd = { version = "0.13.0", default-features = false }
[target.'cfg(not(unix))'.dependencies]
is_executable = "1.0.1"
[build-dependencies]
clap = { version = "4.4.8", features = ["derive", "env", "string"] }
clap_complete = "4.4.4"
clap_mangen = "0.2.15"
[dev-dependencies]
assert_cmd = "2.0.12"
infer = "0.15.0"
insta = "1.34.0"
parse-display = "0.8.2"
proptest = "1.4.0"
rand = { version = "0.8.5", default-features = false, features = ["small_rng", "std"] }
test-strategy = "0.3.1"
[features]
default = ["flate2/zlib", "gzp/deflate_zlib", "zip/deflate-zlib", "zstd/thin"]
[profile.release]
lto = true
codegen-units = 1
opt-level = 3
strip = true