-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (35 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
[package]
name = "conceal"
version = "0.5.4"
authors = ["Collide <[email protected]>"]
edition = "2021"
description = "Command line recycle bin"
documentation = "https://github.com/TD-Sky/conceal"
repository = "https://github.com/TD-Sky/conceal"
readme = "README.md"
categories = ["command-line-utilities"]
keywords = ["trash", "remove", "recycle", "freedesktop"]
license = "MIT"
include = ["src/**/*", "Cargo.toml", "Cargo.lock", "LICENSE*", "README.md"]
[workspace.dependencies]
clap = "4.5"
clap_complete = "4.5"
clap_complete_nushell = "4.5"
dirs = "5.0"
owo-colors = "4.0"
thiserror = "1"
trash = "5.1"
chrono = "0.4"
[dependencies]
clap = { workspace = true, features = ["derive", "env"] }
dirs = { workspace = true }
owo-colors = { workspace = true }
thiserror = { workspace = true }
trash = { workspace = true }
chrono = { workspace = true }
[build-dependencies]
clap = { workspace = true, features = ["derive", "env"] }
clap_complete = { workspace = true }
clap_complete_nushell = { workspace = true }
[profile.release]
lto = true