-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
49 lines (42 loc) · 938 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
43
44
45
46
47
48
49
[package]
name = "rmx"
authors = ["Fabricio <[email protected]>"]
categories = ["command-line-utilities, filesystem"]
repository = "https://github.com/demfabris/rmx"
license = "MIT OR Apache-2.0"
description = "Faster GNU 'rm' drop in replacement with extra features"
keywords = ["gnu", "remove", "trash"]
version = "0.1.6"
edition = "2021"
[dependencies]
clap = { version = "3", features = ["cargo"] }
dialoguer = "0.10.2"
thiserror = "1.0.37"
jwalk = "0.6.0"
trash = "2.1.5"
rand = "0.8.5"
zeroize = "1.5.7"
crossbeam-channel = "0.5.6"
[features]
auto-interactive = []
[target.'cfg(unix)'.dependencies]
libc = "0.2.135"
[dev-dependencies]
assert_fs = "1.0.7"
assert_cmd = "2.0.4"
predicates = "2.1.1"
escargot = "0.5.7"
criterion = "0.4.0"
[profile.release]
lto = "fat"
codegen-units = 1
opt-level = 3
strip = true
[profile.bench]
lto = "fat"
codegen-units = 1
opt-level = 3
strip = true
[[bench]]
name = "cli"
harness = false