diskr-cli 1.0.0

Save your disk space, without fear of deleting the wrong thing.
Documentation
[package]
name = "diskr-cli"
version = "1.0.0"
edition = "2021"
authors = ["diskr contributors"]
description = "Save your disk space, without fear of deleting the wrong thing."
license = "MIT"
repository = "https://github.com/monji024/diskr"
readme = "README.md"

[lib]
name = "diskr"
path = "src/lib.rs"

[[bin]]
name = "diskr"
path = "src/main.rs"

[dependencies]
# TUI
ratatui = "0.28"
crossterm = "0.28"

# fs walking / hashing
jwalk = "0.8"
rayon = "1.10"
blake3 = "1.5"
trash = "5.1"

# async runtime (health daemon, watch mode)
tokio = { version = "1.40", features = ["rt-multi-thread", "macros", "time", "signal", "process", "fs", "io-util"] }
notify = "6.1"

# cli / config
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"

# system info
sysinfo = "0.31"

# misc
anyhow = "1.0"
thiserror = "1.0"
chrono = { version = "0.4", features = ["serde"] }
humansize = "2.1"
colored = "2.1"
walkdir = "2.5"
dirs = "5.0"
indicatif = "0.17"
regex = "1.10"
once_cell = "1.19"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true