-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (38 loc) · 981 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "gradle-wiper"
version = "0.2.0"
edition = "2021"
authors = ["[email protected]"]
description = "Reclaim machine resources (RAM, Disk) attached to Gradle builds "
repository = "https://github.com/dotanuki-labs/gradle-wiper"
readme = "README.md"
license = "MIT"
publish = true
categories = ["command-line-utilities"]
keywords = ["utilities", "gradle", "clean-up", "android"]
[package.metadata]
msrv = "1.78.0"
[dependencies]
anyhow = "1.0.82"
clap = { version = "4.5.4", features = ["derive"] }
comfy-table = "7.1.1"
directories = "5.0.1"
human-panic = "2.0.0"
better-panic = "0.3.0"
itertools = "0.13.0"
walkdir = "2.5.0"
uuid = { version = "1.8.0", features = ["v4"] }
ubyte = "0.10.4"
cached = "0.54.0"
env_logger = { version = "0.11.3", features = ["color"]}
log = "0.4.21"
whoami = "1.5.1"
rust-strings = "0.6.0"
sysinfo = "0.33.0"
[dev-dependencies]
fake = "3.0.0"
temp-dir = "0.1.13"
[profile.release]
strip = true
lto = true
codegen-units = 1