-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
75 lines (69 loc) · 1.65 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "parallel-disk-usage"
description = "Highly parallelized, blazing fast directory tree analyzer"
version = "0.11.0"
authors = ["khai96_ <[email protected]>"]
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
documentation = "https://docs.rs/parallel-disk-usage"
repository = "https://github.com/KSXGitHub/parallel-disk-usage.git"
keywords = [
"pdu",
"dust",
"dutree",
"size",
"chart",
]
categories = [
"command-line-utilities",
"filesystem",
]
include = [
"/src",
"/cli",
"/tests",
"/Cargo.toml",
"/README.md",
"/LICENSE",
]
[lib]
name = "parallel_disk_usage"
path = "src/lib.rs"
[[bin]]
name = "pdu"
path = "cli/main.rs"
required-features = ["cli"]
[[bin]]
name = "pdu-completions"
path = "cli/completions.rs"
required-features = ["cli-completions"]
[features]
default = ["cli"]
json = ["serde/derive", "serde_json"]
cli = ["clap/derive", "clap_complete", "clap-utilities", "json"]
cli-completions = ["cli"]
[dependencies]
pipe-trait = "^0.4.0"
smart-default = "^0.7.1"
derive_more = { version = "^1.0.0", features = ["full"] }
rayon = "^1.10.0"
text-block-macros = "^0.2.0"
rounded-div = "^0.1.2"
fmt-iter = "^0.2.1"
itertools = "^0.13.0"
assert-cmp = "^0.2.1"
zero-copy-pads = "^0.2.0"
terminal_size = "^0.4.0"
clap = { version = "^4.3.8", optional = true }
clap_complete = { version = "^4.5.36", optional = true }
clap-utilities = { version = "^0.2.0", optional = true }
serde = { version = "^1.0.214", optional = true }
serde_json = { version = "^1.0.132", optional = true }
sysinfo = "0.32.0"
[dev-dependencies]
build-fs-tree = "^0.7.1"
command-extra = "^1.0.0"
maplit = "^1.0.2"
pretty_assertions = "^1.4.1"
rand = "^0.8.5"