-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
25 lines (24 loc) · 842 Bytes
/
Cargo.toml
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
[package]
name = "cargo-clean-all"
version = "0.6.2"
authors = ["Daniel M <[email protected]>"]
license = "MIT"
repository = "https://github.com/dnlmlr/cargo-clean-all"
homepage = "https://github.com/dnlmlr/cargo-clean-all"
readme = "README.md"
description = "Recursively clean all cargo projects in a given directory that match the specified criteria"
categories = ["development-tools::cargo-plugins", "command-line-utilities"]
keywords = ["cargo-plugins", "cargo-clean", "cargo", "clean", "recursive"]
edition = "2021"
[dependencies]
chrono = "0.4.31"
bytefmt = "0.1.7"
clap = { version = "4.4.7", features = ["derive"] }
crossbeam-channel = "0.5.8"
num_cpus = "1.16.0"
remove_dir_all = { version = "0.8.2", features = ["parallel"] }
dialoguer = "0.11.0"
colored = "2.0.4"
indicatif = "0.17.7"
ctrlc = "3.4.1"
is_executable = "1.0.1"