-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (28 loc) · 851 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
[package]
name = "rust-backend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7.4"
bcrypt = "0.15.0"
chrono = { version = "0.4.31", features = ["serde"] }
dotenvy = "0.15.7"
jsonwebtoken = "9.2.0"
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
sqlx = { version = "0.7.3", features = [
"postgres",
"time",
"chrono",
"uuid",
"runtime-tokio",
] }
tokio = { version = "1.35.1", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.5.1", features = ["cors"] }
ts-rs = "7.1.0"
uuid = { version = "1.6.1", features = ["serde", "v4"] }
tower_governor = { version = "0.3.1", features = ["axum", "tracing"] }
tracing = { version = "0.1", features = ["attributes"] }
tracing-subscriber = "0.3"