1
0
forked from 409/chat-app
This commit is contained in:
2025-06-05 21:20:52 +02:00
commit 2a55ba5fc9
7 changed files with 2436 additions and 0 deletions

14
Cargo.toml Normal file
View File

@@ -0,0 +1,14 @@
[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"