-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
48 lines (44 loc) · 1.25 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
[package]
name = "trashy"
version = "2.0.0"
authors = ["Brian Shu <littlebubu.shu@gmail.com>"]
description = """
trashy is a simple, fast, and featureful alternative to rm and trash-cli.
"""
documentation = "https://github.com/oberblastmeister/trashy"
homepage = "https://github.com/oberblastmeister/trashy"
repository = "https://github.com/oberblastmeister/trashy"
readme = "README.md"
keywords = ["trash", "remove", "recycle", "bin", "freedesktop"]
categories = ["command-line-utilities"]
license = "MIT/Apache-2.0"
edition = "2021"
rust-version = "1.62"
[[bin]]
path = "src/main.rs"
name = "trashy"
[dependencies]
clap_mangen = "0.2.9"
clap_complete = "4.1.4"
anyhow = { version = "1.0.68", features = ["backtrace"] }
trash = "3.0.6"
chrono = "0.4.23"
chrono-humanize = "0.2.1"
lscolors = { version = "0.13.0", features = ["crossterm"] }
once_cell = "1.17.0"
atty = "0.2.14"
ansi_term = "0.12.1"
humantime = "2.1.0"
regex = "1.7.0"
aho-corasick = "0.7.20"
dialoguer = "0.10.3"
globset = { version = "0.4.9", default-features = false }
either = "1.8.1"
terminal_size = "0.2.3"
[dependencies.tabled]
version = "0.10.0"
default-features = false
features = ["color"]
[dependencies.clap]
version = "4.1.8"
features = ["suggestions", "color", "derive", "wrap_help", "cargo"]