-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (38 loc) · 834 Bytes
/
Copy pathCargo.toml
File metadata and controls
47 lines (38 loc) · 834 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
45
46
47
[workspace]
resolver = "2"
members = [
"crates/vwh-core",
"crates/vwh",
]
[workspace.package]
version = "4.0.2"
edition = "2021"
authors = ["Victor"]
license = "MIT"
[workspace.dependencies]
# Crypto
ed25519-dalek = "3.0"
blake3 = "1.5"
chacha20poly1305 = "0.10"
argon2 = "0.5"
getrandom = "0.4"
zeroize = "1.7"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Time
chrono = { version = "0.4", features = ["serde"] }
# CLI
clap = { version = "4.5", features = ["derive", "env"] }
# Error handling
thiserror = "2.0"
anyhow = "1.0"
# Utilities
hex = "0.4"
directories = "6.0"
fd-lock = "4.0"
# HTTP (inspector)
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
# Interactive UX (authoring)
dialoguer = "0.12"
console = "0.16"