wrbapp-next/server/Cargo.toml

30 lines
696 B
TOML
Raw Normal View History

2025-01-15 23:20:17 +01:00
[package]
name = "wrbapp_server"
version = "0.1.0"
edition = "2021"
[dependencies]
2025-01-31 13:36:09 +01:00
# Primary crates
axum = { version = "0.8", features = [ "macros", "json" ] }
axum-extra = { version = "0.10.0", features = [ "typed-header" ] }
2025-01-15 23:20:17 +01:00
tokio = { version = "1.43", features = [ "rt-multi-thread", "macros" ] }
sqlx = { version = "0.8", features = [ "runtime-tokio", "postgres" ] }
2025-01-31 13:36:09 +01:00
# Secondary crates
csv = { version = "1.3" }
2025-01-15 23:20:17 +01:00
serde = "1.0"
dotenvy = "0.15.7"
2025-01-31 13:36:09 +01:00
validator = { version = "0.19.0", features = [ "derive" ] }
2025-01-15 23:20:17 +01:00
2025-01-31 13:36:09 +01:00
# Tertiary crates
2025-01-15 23:20:17 +01:00
tracing = "0.1"
tracing-subscriber = "0.3"
2025-01-31 13:36:09 +01:00
chrono = "0.4.39"
uuid = "1.12.0"
serde_json = "1.0.137"
rand = "0.9"
thiserror = { version = "2.0" }
itertools = "0.14"