-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (38 loc) · 979 Bytes
/
Copy pathCargo.toml
File metadata and controls
46 lines (38 loc) · 979 Bytes
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
[package]
name = "node-cleaner"
version = "0.2.25"
edition = "2024"
authors = ["Brean", ""]
description = "A tool for cleaning and managing node_modules directories"
repository = "https://github.com/Breinss/rust-node-modules-cleaner"
license = "MIT"
keywords = ["cli", "node", "cleanup", "disk-space"]
categories = ["command-line-utilities"]
[[bin]]
name = "node-cleaner"
path = "src/main.rs"
[profile.release]
codegen-units = 1
lto = "fat"
[dependencies]
jwalk = "0.8"
walkdir = "2.3"
log = "0.4"
env_logger = "0.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.3", features = ["derive"] }
clap-verbosity-flag = "2.0"
once_cell = "1.18"
# Optional - for even faster hash maps
fxhash = { version = "0.2", optional = true }
chrono = "0.4.41"
indicatif = "0.17.11"
indicatif-log-bridge = "0.2.3"
dialoguer = "0.11.0"
color-eyre = "0.6.5"
ratatui = "0.29.0"
io = "0.0.2"
crossterm = "0.29.0"
[features]
use-fxhash = ["fxhash"]