[package]
edition = "2024"
name = "clean-dev-dirs"
version = "2.3.1"
authors = ["Tom Planche <tomplanche@proton.me>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/README.md",
"/src/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast CLI tool for recursively cleaning Rust target/ and Node.js node_modules/ directories to reclaim disk space"
homepage = "https://github.com/TomPlanche/clean-dev-dirs"
readme = "README.md"
keywords = [
"cli",
"cleanup",
"rust",
"nodejs",
"disk-space",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/TomPlanche/clean-dev-dirs"
[lib]
name = "clean_dev_dirs"
path = "src/lib.rs"
doctest = false
[[bin]]
name = "clean-dev-dirs"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4.43"
[dependencies.clap]
version = "4.5.58"
features = ["derive"]
[dependencies.colored]
version = "3.1.1"
[dependencies.humansize]
version = "2.1.3"
[dependencies.indicatif]
version = "0.17.11"
[dependencies.inquire]
version = "0.7"
[dependencies.rayon]
version = "1.11.0"
[dependencies.serde_json]
version = "1.0.149"
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.tempfile]
version = "3.25"
[build-dependencies.hooksmith]
version = "1.15.0"