-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (29 loc) · 1.06 KB
/
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
[package]
name = "challenge_server"
version = "4.3.2"
edition = "2021"
[dependencies]
log = "0.4.17"
simple_logger = "4.2.0"
tokio = { version = "1.33.0", features = ["full"] }
tower-http = { version = "0.4.0", features = ["cors"] }
http = "1.0.0"
axum = { version = "0.6.20", features = ["multipart"] }
axum-server = { version = "0.5.1", features = ["tls-rustls"] }
axum-extra = { version = "0.8.0", features = ["cookie"] }
serde = { version = "1.0.157", features = ["derive"] }
serde_json = "1.0.94"
rand = "0.8.4"
tower-service = "0.3.2"
envcrypt = "0.5.0"
scoreboard_db = { version = "0.2.1", features = ["database"]}
argon2 = "0.5.0"
jsonwebtoken = "9.1.0"
sqlx = { version = "0.7.2", features = ["runtime-async-std-native-tls", "mysql", "chrono" ] }
chrono = { version = "0.4.24", features = ["serde"] }
rand_core = { version = "0.6.4", features = ["std"] }
time = "0.3.20"
base64 = "0.21.0"
uuid = { version = "1.3.0", features = ["serde", "v4"] }
redis = { version = "0.23.0", features = ["tokio-comp"] }
lettre = { version = "0.11.1", features = ["tokio1", "tokio1-native-tls"] }