-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
54 lines (48 loc) · 1.36 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
[package]
name = "findlargedir"
version = "0.9.1"
authors = ["Dinko Korunic <[email protected]>"]
categories = ["command-line-utilities"]
description = "find all blackhole directories with a huge amount of filesystem entries in a flat structure"
repository = "https://github.com/dkorunic/findlargedir"
homepage = "https://github.com/dkorunic/findlargedir"
readme = "README.md"
license = "MIT"
exclude = [".gitignore"]
edition = "2021"
[dependencies]
rayon = "1.10.0"
tempfile = "3.14.0"
anyhow = "1.0.94"
human_format = "1.1.0"
clap = { version = "4.5.23", features = ["derive", "unicode", "wrap_help"] }
rm_rf = "0.6.2"
ansi_term = "0.12.1"
fs-err = "3.0.0"
indicatif = { version = "0.17.9", features = ["rayon"] }
cfg-if = "1.0"
fdlimit = "0.3.0"
ahash = "0.8.11"
anstyle = "1.0.10"
signal-hook = "0.3.17"
ignore = "0.4.23"
normpath = "1.3.0"
[target.'cfg(all(target_os = "linux", target_arch = "x86_64"))'.dependencies]
tikv-jemallocator = "0.6.0"
[target.'cfg(all(target_os = "linux", target_arch = "aarch64"))'.dependencies]
tikv-jemallocator = "0.6.0"
[target.'cfg(target_os = "macos")'.dependencies]
tikv-jemallocator = "0.6.0"
[profile.release]
opt-level = 3
debug = "none"
strip = "symbols"
debug-assertions = false
overflow-checks = true
lto = "fat"
panic = "abort"
codegen-units = 1
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "fat"