local_chat/server/Cargo.toml
2024-10-19 10:34:57 -05:00

26 lines
706 B
TOML

[package]
name = "server"
version = "0.1.0"
edition = "2021"
[dependencies]
argon2 = "0.5.3"
axum = { version = "0.7.7", features = ["ws"] }
axum-login = "0.16.0"
chrono = "0.4.38"
ciborium = "0.2.2"
clap = { version = "4.5.20", features = ["derive"] }
common = { version = "0.1.0", path = "../common" }
diesel = { version = "2.2.4", features = ["chrono", "sqlite"] }
futures = "0.3.31"
log = "0.4.22"
rpassword = "7.3.1"
slab = "0.4.9"
time = "0.3.36"
tokio = { version = "1.40.0", features = ["full"] }
tower = "0.5.1"
tower-http = { version = "0.6.1", features = ["full"] }
tower-sessions = { version = "0.13.0", features = ["memory-store", "signed"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"