[package] name = "backend" version = "0.1.0" edition = "2021" [dependencies] http = "1" axum = { version = "0.7.5", features = [ "json", "macros", "ws" ] } axum-macros = "0.4.1" chrono = { version = "0.4", features = [ "serde" ] } chrono-tz = "0.10.0" maud = "0.26.0" sqlx = { version = "0.8.2", features = [ "postgres", "runtime-tokio", "tls-rustls-ring", "uuid", "chrono" ] } tokio = { version = "1.40.0", features = [ "full" ] } dashmap = "6" serde = { version = "1", features = [ "derive" ] } thiserror = "1" anyhow = "1" uuid = { version = "1.10.0", features = [ "serde" ] } rand = "0.8.5" tracing = "0.1.40" tracing-subscriber = "0.3.18" axum_static = "1.7.1"