-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
82 lines (77 loc) · 1.97 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
76
77
78
79
80
81
82
[package]
name = "yadf"
version = "1.3.0"
authors = ["jRimbault <[email protected]>"]
edition = "2021"
description = "yet another dupes finder"
license = "MIT"
homepage = "https://github.com/jRimbault/yadf"
repository = "https://github.com/jRimbault/yadf"
readme = "README.md"
rust-version = "1.74.1"
categories = ["command-line-utilities", "filesystem"]
keywords = ["dupe", "duplicate", "finder", "fdupes", "fast"]
[profile.release]
lto = "fat"
codegen-units = 1
[[bin]]
name = "yadf"
required-features = ["build-bin"]
[features]
default = ["build-bin"]
build-bin = [
"dep:ahash",
"dep:anyhow",
"dep:byte-unit",
"dep:clap",
"dep:clap-verbosity-flag",
"dep:csv",
"dep:env_logger",
"dep:highway",
"dep:human-panic",
"dep:metrohash",
"dep:seahash",
"dep:serde_json",
"dep:twox-hash",
]
[dependencies]
# library dependencies
crossbeam-channel = "0.5.13"
dunce = "1.0.5"
globset = "0.4.15"
ignore = "0.4.23"
log = "0.4.22"
num_cpus = "1.16.0"
rayon = "1.10.0"
regex = "1.11.1"
serde = "1.0.214"
typed-builder = "0.20.0"
# binary dependencies
ahash = { version = "0.8.11", optional = true }
anyhow = { version = "1.0.92", optional = true }
byte-unit = { version = "5.1.6", features = ["byte"], optional = true }
clap = { version = "4.5.20", features = [
"cargo",
"derive",
"string",
], optional = true }
clap-verbosity-flag = { version = "2.2.2", optional = true }
csv = { version = "1.3.0", optional = true }
env_logger = { version = "0.11.5", optional = true }
highway = { version = "1.2.0", optional = true }
human-panic = { version = "2.0.2", optional = true }
metrohash = { version = "1.0.6", optional = true }
seahash = { version = "4.1.0", optional = true }
serde_json = { version = "1.0.132", optional = true }
twox-hash = { version = "1.6.3", optional = true }
[dev-dependencies]
assert_cmd = "2"
dirs = "5.0.1"
env_logger = "0.11.5"
highway = "1.2.0"
once_cell = "1.20.2"
serde_json = "1.0.132"
seahash = "4.1.0"
twox-hash = "1.6.3"
predicates = "3.1.2"
rand = "0.8"