[package] name = "cargo-recursive-clean" version = "0.2.310" edition = "2021" authors = ["OLoKo64 "] description = "A CLI app that cleans all Rust projects recursively given a base directory." categories = ["command-line-utilities"] keywords = ["cargo", "clean", "recursive"] repository = "https://github.com/OLoKo64/cargo-recursive-clean" license = "MIT" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [profile.release] lto = true strip = true codegen-units = 1 [dependencies] clap = { version = "4.4.13", features = ["derive"] } itertools = "0.12.0" owo-colors = "4.0.0" tokio = { version = "1.35.1", features = [ "macros", "rt-multi-thread", "process", ] } toml = "0.8.8" wax = "0.6.0"