wrbapp-next/server/Cargo.toml

33 lines
863 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" ] }
2025-02-07 12:04:51 +01:00
axum-extra = { version = "0.10.0", features = [ "typed-header", "cookie" ] }
2025-01-15 23:20:17 +01:00
tokio = { version = "1.43", features = [ "rt-multi-thread", "macros" ] }
2025-02-03 09:34:30 +01:00
sqlx = { version = "0.8", features = [ "runtime-tokio", "postgres", "uuid", "chrono" ] }
2025-01-15 23:20:17 +01:00
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-02-01 16:27:46 +01:00
argon2 = "0.5"
2025-02-07 14:24:21 +01:00
bitflags = { version = "2.8", features = [ "serde" ] }
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-02-03 09:34:30 +01:00
chrono = "0.4"
2025-02-07 15:59:50 +01:00
uuid = { version = "1.12", features = ["v4", "fast-rng", "serde"] }
2025-01-31 13:36:09 +01:00
serde_json = "1.0.137"
rand = "0.9"
2025-02-03 09:34:30 +01:00
rand_chacha = "0.9"
2025-01-31 13:36:09 +01:00
thiserror = { version = "2.0" }
itertools = "0.14"