-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
47 lines (43 loc) · 1.06 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
[package]
name = "sweeprs"
version = "0.3.0"
edition = "2024"
description = "Fast macOS disk cleanup TUI"
license = "MIT"
rust-version = "1.85.0"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
ratatui = { version = "0.29", features = ["crossterm"] }
crossterm = "0.29"
rayon = "1"
ignore = "0.4"
serde = { version = "1", features = ["derive"] }
toml = "0.9"
serde_json = "1"
indexmap = { version = "2", features = ["serde"] }
rustc-hash = "2"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
memchr = "2"
yansi = "1"
humansize = "2"
indicatif = { version = "0.18", features = ["rayon"] }
dirs = "6"
chrono = { version = "0.4", features = ["clock"] }
sysinfo = "0.36"
ctrlc = { version = "3", features = ["termination"] }
globset = "0.4"
clap_complete = "4"
tempfile = "3"
[lints.rust]
unsafe_code = "deny"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
module_name_repetitions = "allow"
[profile.release]
lto = true
codegen-units = 1
strip = true