-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
76 lines (72 loc) · 1.87 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
[package]
name = "yadf"
version = "0.16.0"
authors = ["jRimbault <jacques.rimbault@gmail.com>"]
edition = "2018"
description = "yet another dupes finder"
license = "MIT"
homepage = "https://github.com/jRimbault/yadf"
repository = "https://github.com/jRimbault/yadf"
readme = "README.md"
categories = ["command-line-utilities", "filesystem"]
keywords = ["dupe", "duplicate", "finder", "fdupes", "fast"]
[[bin]]
name = "yadf"
required-features = ["build-bin"]
[features]
default = ["build-bin"]
build-bin = [
"ahash",
"anyhow",
"atty",
"byte-unit",
"clap-verbosity-flag",
"csv",
"env_logger",
"highway",
"human-panic",
"metrohash",
"seahash",
"serde_json",
"structopt",
"twox-hash",
]
[dependencies]
# library dependencies
crossbeam-channel = "0.5.0"
dunce = "1.0.1"
globset = "0.4.6"
ignore = "0.4.16"
log = "0.4.11"
num_cpus = "1.13.0"
once_cell = "1.5.2"
rayon = "1.3.1"
regex = "1.4.2"
serde = "1.0.114"
sysinfo = "0.20"
typed-builder = "0.9.0"
# binary dependencies
ahash = { version = "0.7.0", optional = true }
anyhow = { version = "1.0.38", optional = true }
atty = { version = "0.2.14", optional = true }
byte-unit = { version = "4.0.8", default-features = false, optional = true }
clap-verbosity-flag = { version = "0.3.1", optional = true }
csv = { version = "1.1.4", optional = true }
env_logger = { version = "0.9", optional = true }
highway = { version = "0.6.2", optional = true }
human-panic = { version = "1.0.3", optional = true }
metrohash = { version = "1.0.6", optional = true }
seahash = { version = "4.0.1", optional = true }
serde_json = { version = "1.0.57", optional = true }
structopt = { version = "0.3.15", optional = true }
twox-hash = { version = "1.5.0", optional = true }
[dev-dependencies]
assert_cmd = "2"
dirs = "3.0.1"
env_logger = "0.9"
highway = "0.6.2"
serde_json = "1.0.57"
seahash = "4.0.1"
twox-hash = "1.5.0"
predicates = "2"
rand = "0.8"