-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (40 loc) · 997 Bytes
/
Cargo.toml
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
[package]
name = "thunder-server"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
config = "0.14.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
once_cell = "1.15.0"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
anyhow = "1.0.66"
mongodb = "2.3.1"
actix-jwt-authc = "0.2.0"
jsonwebtoken = "8.1.1"
hmac = "0.12.1"
sha2 = "0.10.6"
base64 = "0.22.0"
ring = "0.17.8"
time = "0.3.17"
tokio = "1.21.2"
futures = "0.3.25"
dashmap = "5.4.0"
strum = { version = "0.26.2", features = ["derive"] }
strum_macros = "0.26.2"
actix-multipart = "0.6.1"
futures-util = "0.3.25"
sanitize-filename = "0.5.0"
actix-files = "0.6.2"
mime = "0.3.16"
async-trait = "0.1.59"
clap = { version = "4.0.30", features = ["derive"] }
actix-cors = "0.7.0"
tar = "0.4.22"
bytes = "1.3.0"
libflate = "1.2.0"
zip = { version = "0.6.3", default-features = false }
async-recursion = "1.0.0"