-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 980 Bytes
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 980 Bytes
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "cachekill"
version = "0.1.2"
edition = "2021"
authors = ["Kage <info@kagehq.com>"]
description = "A CLI tool to safely nuke development and build caches"
license = "FSL-1.1-MIT"
repository = "https://github.com/kagehq/cachekill"
keywords = ["cache", "cleanup", "development", "build", "cli"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "cachekill"
path = "src/main.rs"
[dependencies]
clap = { version = "4.4", features = ["derive", "cargo"] }
anyhow = "1.0"
thiserror = "1.0"
time = "0.3"
walkdir = "2.4"
globset = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
humansize = "2.1"
indicatif = "0.17"
sysinfo = "0.30"
dirs = "5.0"
inquire = "0.6"
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"] }
fs_extra = "1.3"
which = "6.0"
toml = "0.8"
rayon = "1.8"
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
tempfile = "3.8"
assert_cmd = "2.0"
predicates = "3.0"