local_chat/server/Cargo.toml
2024-10-08 20:59:42 -05:00

21 lines
517 B
TOML

[package]
name = "server"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = { version = "0.7.7", features = ["ws"] }
axum-client-ip = "0.6.1"
axum_static = "1.7.1"
ciborium = "0.2.2"
clap = { version = "4.5.19", features = ["derive"] }
common = { version = "0.1.0", path = "../common" }
futures = "0.3.31"
log = "0.4.22"
slab = "0.4.9"
tokio = { version = "1.40.0", features = ["full"] }
tower = "0.5.1"
tower-http = { version = "0.6.1", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"