local_chat/server/Cargo.toml

26 lines
706 B
TOML
Raw Normal View History

2024-10-08 19:54:34 -05:00
[package]
name = "server"
version = "0.1.0"
edition = "2021"
[dependencies]
argon2 = "0.5.3"
2024-10-08 19:54:34 -05:00
axum = { version = "0.7.7", features = ["ws"] }
2024-10-09 11:58:49 -05:00
axum-login = "0.16.0"
chrono = "0.4.38"
2024-10-08 20:59:42 -05:00
ciborium = "0.2.2"
2024-10-08 19:54:34 -05:00
clap = { version = "4.5.19", features = ["derive"] }
2024-10-08 20:59:42 -05:00
common = { version = "0.1.0", path = "../common" }
diesel = { version = "2.2.4", features = ["chrono", "sqlite"] }
2024-10-08 19:54:34 -05:00
futures = "0.3.31"
log = "0.4.22"
rpassword = "7.3.1"
2024-10-08 19:54:34 -05:00
slab = "0.4.9"
2024-10-09 11:58:49 -05:00
time = "0.3.36"
2024-10-08 19:54:34 -05:00
tokio = { version = "1.40.0", features = ["full"] }
tower = "0.5.1"
tower-http = { version = "0.6.1", features = ["full"] }
2024-10-09 11:58:49 -05:00
tower-sessions = { version = "0.13.0", features = ["memory-store", "signed"] }
2024-10-08 19:54:34 -05:00
tracing = "0.1.40"
tracing-subscriber = "0.3.18"