-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
93 lines (85 loc) · 2.01 KB
/
Cargo.toml
File metadata and controls
93 lines (85 loc) · 2.01 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "parallel-disk-usage"
description = "Highly parallelized, blazing fast directory tree analyzer"
version = "0.21.1"
authors = ["khai96_ <hvksmr1996@gmail.com>"]
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",
"/USAGE.md",
"/LICENSE",
"/template/ai-instructions",
]
[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"]
[[bin]]
name = "pdu-usage-md"
path = "cli/usage_md.rs"
required-features = ["cli"]
[[bin]]
name = "pdu-ai-instructions"
path = "cli/ai_instructions.rs"
required-features = ["ai-instructions"]
[features]
default = ["cli"]
json = ["serde/derive", "serde_json"]
cli = ["clap/derive", "clap_complete", "clap-utilities", "json"]
cli-completions = ["cli"]
ai-instructions = ["clap/derive"]
[dependencies]
assert-cmp = "0.3.0"
clap = { version = "4.5.60", optional = true }
clap_complete = { version = "4.5.66", optional = true }
clap-utilities = { version = "0.3.0", optional = true }
dashmap = "6.1.0"
derive_more = { version = "2.1.1", features = ["full"] }
derive_setters = "0.1.9"
fmt-iter = "0.2.1"
into-sorted = "0.0.3"
itertools = "0.14.0"
pipe-trait = "0.4.0"
rayon = "1.10.0"
rounded-div = "0.1.4"
serde = { version = "1.0.228", optional = true }
serde_json = { version = "1.0.149", optional = true }
smart-default = "0.7.1"
sysinfo = "0.38.2"
terminal_size = "0.4.3"
text-block-macros = "0.2.0"
zero-copy-pads = "0.2.0"
[dev-dependencies]
build-fs-tree = "0.8.1"
command-extra = "1.0.0"
libc = "0.2.182"
maplit = "1.0.2"
normalize-path = "0.2.1"
pretty_assertions = "1.4.1"
rand = "0.10.0"