-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (36 loc) · 948 Bytes
/
Cargo.toml
File metadata and controls
54 lines (36 loc) · 948 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
48
49
50
51
52
53
54
[package]
name = "sealed-ch"
version = "2.0.0"
edition = "2021"
license = "MIT"
[dependencies]
image = "0.25"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
zip = { version = "2.1", default-features = false, features = ["deflate"] }
sha2 = "0.10"
blake3 = "1.5"
hex = "0.4"
ed25519-dalek = { version = "2.1", features = ["rand_core", "pem"] }
uuid = { version = "1.7", features = ["v4"] }
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
indicatif = "0.17"
rand = "0.8"
reqwest = { version = "0.12", features = ["json", "blocking", "multipart"] }
chrono = { version = "0.4", features = ["serde"] }
base64 = "0.22"
aes-gcm = "0.10"
argon2 = "0.5"
rpassword = "7.3"
zeroize = "1.7"
tiny_http = "0.12"
[lib]
name = "sealed"
path = "src/lib.rs"
[[bin]]
name = "sealed-ch"
path = "src/main.rs"