[package]
edition = "2024"
rust-version = "1.85"
name = "cruftkill"
version = "0.3.4"
authors = ["xuanphamdev"]
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"LICENSE",
"README.md",
"rustfmt.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Polyglot dev-cache reaper — find and delete node_modules, .venv, target, DerivedData and the rest of your build cruft from a fast terminal UI"
homepage = "https://github.com/xuanphamdev/cruftkill"
documentation = "https://docs.rs/cruftkill"
readme = "README.md"
keywords = [
"cli",
"disk-cleanup",
"cache",
"tui",
"developer-tools",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "MIT"
repository = "https://github.com/xuanphamdev/cruftkill"
[lib]
name = "cruftkill"
path = "src/lib.rs"
[[bin]]
name = "cft"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
features = ["event-stream"]
[dependencies.futures]
version = "0.3"
[dependencies.is-terminal]
version = "0.4"
[dependencies.num_cpus]
version = "1"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"fs",
]
[dependencies.tokio-util]
version = "0.7"
[dependencies.update-informer]
version = "1"
features = ["crates"]
default-features = false
[dev-dependencies.tempfile]
version = "3"
[profile.dist]
lto = "thin"
inherits = "release"
[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"