18 lines
559 B
TOML
18 lines
559 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"
|