-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (30 loc) · 965 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
[package]
name = "tickify-api"
version = "0.1.0"
edition = "2021"
[dependencies]
argon2 = { version = "0.5.3", features = ["std"] }
async-trait = "0.1.85"
axum = "0.8.1"
chrono = { version = "0.4.39", features = ["serde"] }
csv = "1.3.1"
dotenvy = "0.15.7"
jsonwebtoken = "9.3.0"
lopdf = "0.35.0"
serde = { version = "1.0.217", features = ["derive"] }
sqlx = { version = "0.8.3", features = [
"chrono",
"postgres",
"runtime-tokio-native-tls",
"uuid",
] }
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["full"] }
tower-http = { version = "0.6.2", features = ["cors"] }
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
utoipa = { version = "5.3.1", features = ["chrono", "uuid"] }
utoipa-swagger-ui = { version = "9.0.0", features = ["axum"] }
uuid = { version = "1.12.1", features = ["serde", "v4", "v7"] }
validator = { version = "0.20.0", features = ["derive"] }