-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (30 loc) · 857 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (30 loc) · 857 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
[package]
name = "DynaRust"
version = "1.1.0"
edition = "2024"
[dependencies]
actix-web = { version = "4", features = ["openssl"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs"] }
reqwest = { version = "0.12.15", features = ["json"] }
futures-util = "0.3.31"
serde_json = "1.0.140"
serde = { version = "1.0.219", features = ["derive"] }
base64 = "0.21"
once_cell = "1.21.3"
futures = "0.3.31"
async-stream = "0.3.6"
sha2 = "0.11.0-pre.5"
hex = "0.4.3"
openssl = { version = "0.10", features = ["vendored"] }
chrono = "0.4.40"
jsonwebtoken = "9.3.1"
log = "0.4.27"
rand_core = "0.9.3"
rand = "0.8"
aes-gcm = "0.10" # AES-GCM (AEAD) implementation
aead = "0.5" # traits for Aead, KeyInit, etc.
dotenvy = "0.15.7"
dashmap = { version = "6.1.0", features = ["serde"] }
bincode = "1.3.3"
argon2 = "0.5"
env_logger = "0.11"