-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (39 loc) · 918 Bytes
/
Cargo.toml
File metadata and controls
44 lines (39 loc) · 918 Bytes
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
[package]
name = "buddy"
version = "0.1.7"
edition = "2021"
[[bin]]
name = "buddy"
path = "src/main.rs"
[lib]
name = "buddy"
path = "src/lib.rs"
[features]
default = []
fuzz-tests = ["dep:proptest"]
[dependencies]
aes-gcm-siv = "0.11"
async-trait = "0.1"
base64 = "0.22"
clap = { version = "4", features = ["derive"] }
crossterm = "0.28"
dirs = "6"
hostname = "0.4"
httpdate = "1"
rand = "0.8"
reqwest = { version = "0.12", features = ["json"] }
rpassword = "7"
scrypt = "0.11"
scraper = "0.24"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
termimad = "0.34"
syntect = { version = "5", default-features = false, features = ["default-fancy"] }
tokio = { version = "1", features = ["full"] }
toml = "0.8"
proptest = { version = "1.6", optional = true }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
[dev-dependencies]
termimad = "0.34"