-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (25 loc) · 870 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
[package]
name = "Keja_Backend"
version = "0.1.0"
edition = "2021"
[dependencies]
argon2 = "0.5.1"
async-trait = "0.1.72"
chrono = { version = "0.4.26", features = ["serde"] }
dotenv = "0.15.0"
jsonwebtoken = "9.2.0"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.104"
sqlx = { version = "0.8.1", features = ["runtime-async-std-native-tls", "postgres", "chrono", "uuid"] }
uuid = { version = "1.4.1", features = ["serde", "v4"] }
validator = { version = "0.16.1", features = ["derive"] }
axum = "0.7.5"
axum-extra = { version = "0.9.3", features = ["cookie"]}
tokio = { version = "1.39.3", features = ["full"] }
tower = "0.5.0"
time = "0.3.20"
tower-http = { version = "0.5.2", features = ["cors","trace"] }
tracing-subscriber = { version = "0.3.18"}
lettre = "0.11.7"
lettre_email = "0.9.4"
reqwest = {version = "0.12.6", features = ["json"]}