chatthing/crates/backend/Cargo.toml

19 lines
589 B
TOML

[package]
name = "backend"
version = "0.1.0"
edition = "2021"
[dependencies]
http = "1"
axum = { version = "0.7.5", features = [ "json", "macros" ] }
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" ] }
tokio-tungstenite = "0.24.0"
serde = { version = "1", features = [ "derive" ] }
anyhow = "1"
uuid = { version = "1.10.0", features = [ "serde" ] }
rand = "0.8.5"