32 lines
799 B
TOML
32 lines
799 B
TOML
[package]
|
|
name = "wrbapp_server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# Primary crates
|
|
axum = { version = "0.8", features = [ "macros", "json" ] }
|
|
axum-extra = { version = "0.10.0", features = [ "typed-header", "cookie" ] }
|
|
tokio = { version = "1.43", features = [ "rt-multi-thread", "macros" ] }
|
|
sqlx = { version = "0.8", features = [ "runtime-tokio", "postgres", "uuid", "chrono" ] }
|
|
|
|
# Secondary crates
|
|
csv = { version = "1.3" }
|
|
serde = "1.0"
|
|
dotenvy = "0.15.7"
|
|
validator = { version = "0.19.0", features = [ "derive" ] }
|
|
argon2 = "0.5"
|
|
|
|
|
|
# Tertiary crates
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
chrono = "0.4"
|
|
uuid = { version = "1.12", features = ["v4", "fast-rng"] }
|
|
serde_json = "1.0.137"
|
|
rand = "0.9"
|
|
rand_chacha = "0.9"
|
|
thiserror = { version = "2.0" }
|
|
itertools = "0.14"
|
|
|