-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 690 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "encryption_server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
rocket = { version = "0.5", features = ["tls"] }
jsonwebtoken = "9.2.0"
bs58 = "0.5.0"
serde_with = "3.4.0"
rocket-multipart-form-data = "0.10.7"
blake3 = "1.5.4"
[dependencies.uuid]
version = "1.6.1"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]