-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 756 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (27 loc) · 756 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
[package]
name = "slimmer"
version = "0.1.0"
edition = "2021"
description = "Safe, read-only macOS disk space diagnostic CLI — AI-first, JSON by default"
license = "MIT"
repository = "https://github.com/xmppjingle/Slimmer"
homepage = "https://github.com/xmppjingle/Slimmer"
readme = "README.md"
keywords = ["macos", "disk-space", "diagnostic", "cli", "cleanup"]
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
colored = "2"
walkdir = "2"
bytesize = "1"
dirs = "5"
chrono = { version = "0.4", features = ["serde"] }
tabled = "0.16"
rayon = "1.10"
hostname = "0.4"
[dev-dependencies]
tempfile = "3"
assert_cmd = "2"
predicates = "3"