forked from nivekuil/rip
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
51 lines (45 loc) · 1.03 KB
/
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
43
44
45
46
47
48
49
50
51
[package]
edition = '2021'
name = "rip2"
version = "0.9.0"
description = "rip: a safe and ergonomic alternative to rm"
repository = "https://github.com/MilesCranmer/rip"
readme = "README.md"
license = "GPL-3.0+"
include = [
"src/*.rs",
"Cargo.toml",
]
keywords = ["cli", "rm", "delete", "trash", "recycle"]
categories = ["command-line-utilities"]
autobins = false
[dependencies]
anstyle = "1.0.6"
chrono = "0.4.33"
clap = { version = "4.4", features = ["derive"] }
clap_complete = "4.4"
clap_complete_nushell = "4.4"
dunce = "1.0.4"
fs4 = { version = "0.10.0", features = ["sync"] }
fs_extra = "1.3"
walkdir = "1"
[dev-dependencies]
assert_cmd = "1.0"
lazy_static = "1.4"
predicates = "3.0"
rand = "0.8"
regex = "1.11.0"
rstest = "0.18"
tempfile = "3"
[profile.release]
opt-level = 3
[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[bin]]
name = "rip"
path = "src/main.rs"