-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
37 lines (34 loc) · 1003 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
[package]
name = "rmt"
authors = ["Amine Zouitine"]
description = "remove files or directories and save them in trash."
documentation = "https://github.com/AmineZouitine/rmt.rs"
homepage = "https://github.com/AmineZouitine/rmt.rs"
repository = "https://github.com/AmineZouitine/rmt.rs"
version = "0.2.1"
edition = "2021"
[lib]
name = "rmt_lib"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
rusqlite = { version = "0.29.0", features = ["bundled"] }
chrono = "0.4"
fs_extra = "1.2.0"
sha256 = "1.0.3"
shellexpand = "3.1.0"
rustyline = "11.0.0"
colored = "2.0.0"
clap = { version = "4.0.13", features = ["derive"] }
assert_cmd = "2.0"
predicates = "3.0.3"
chacha20poly1305 = { version = "0.10.0", features = ["stream"] }
rand = "0.8.5"
rust-argon2 = "1.0"
dialoguer = "0.10.2"
crossterm = "0.26.1"
dirs = "5.0.1"
field_count = "0.1.1"
zip = "0.6.6"
walkdir = "2.3.3"