chatthing/crates/backend/Cargo.toml

24 lines
667 B
TOML
Raw Permalink Normal View History

2024-09-23 00:12:56 +00:00
[package]
name = "backend"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-10-04 18:18:36 +00:00
http = "1"
2024-10-07 19:12:49 +00:00
axum = { version = "0.7.5", features = [ "json", "macros", "ws" ] }
2024-09-23 00:12:56 +00:00
axum-macros = "0.4.1"
2024-10-04 18:18:36 +00:00
chrono = { version = "0.4", features = [ "serde" ] }
2024-09-23 00:12:56 +00:00
chrono-tz = "0.10.0"
maud = "0.26.0"
2024-10-04 18:18:36 +00:00
sqlx = { version = "0.8.2", features = [ "postgres", "runtime-tokio", "tls-rustls-ring", "uuid", "chrono" ] }
tokio = { version = "1.40.0", features = [ "full" ] }
2024-10-07 19:12:49 +00:00
dashmap = "6"
2024-10-04 18:18:36 +00:00
serde = { version = "1", features = [ "derive" ] }
2024-10-07 19:12:49 +00:00
thiserror = "1"
2024-09-23 00:12:56 +00:00
anyhow = "1"
2024-10-04 18:18:36 +00:00
uuid = { version = "1.10.0", features = [ "serde" ] }
2024-09-23 00:12:56 +00:00
rand = "0.8.5"
2024-10-07 19:12:49 +00:00
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
axum_static = "1.7.1"