-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 741 Bytes
/
Copy pathCargo.toml
File metadata and controls
25 lines (23 loc) · 741 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
[package]
name = "cleaner"
version = "0.5.0"
edition = "2021"
description = "Cleaner is a utility for cleaning up build artifacts in bulk"
license = "MIT"
readme = "README.md"
include = ["src/**/*", "supported-platforms.json", "Cargo.toml", "LICENSE-MIT", "README.md"]
homepage = "https://github.com/Nejat/cleaner"
repository = "https://github.com/Nejat/cleaner"
keywords = ["cleaner", "delete", "build", "artifacts", "thewolf"]
authors = ["Nejat<nejatoz@gmail.com>"]
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "3", features = ["derive"] }
inquire = "0.2"
once_cell = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
walkdir = "2"
wildmatch = "2"
[dev-dependencies]
version-sync = "0.9"