Files
chat-app/Cargo.toml
2025-06-08 21:29:06 +02:00

20 lines
658 B
TOML

[package]
name = "chat-app"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.98"
axum = { version = "0.8.4", features = ["multipart", "ws"] }
futures-util = "0.3.31"
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.45.1", features = ["full"] }
axum-valid = { path = "../axum-valid", features = ["basic", "typed_multipart", "validify"], default-features = false }
validify = "2.0.0"
axum_typed_multipart = "0.16.2"
serde_json = "1.0.140"
chrono = { version = "0.4.41", features = ["serde"] }
jsonwebtoken = "9.3.1"
sqlx = { version = "0.8.6", features = ["chrono", "postgres", "runtime-tokio"] }
dotenv = "0.15.0"