simple websocket implementation (without auth use)

This commit is contained in:
2025-09-26 02:23:25 +02:00
parent ab0fbbce79
commit 00c5c2bd63
7 changed files with 218 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ edition = "2024"
publish = false
[dependencies]
axum = "0.8.4"
axum = {version = "0.8.4", features = ["ws"]}
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
@@ -23,6 +23,7 @@ chrono = "0.4.42"
anyhow = "1.0.100"
argon2 = {version = "0.5.3"}
rand_core = {version = "0.6.4", features = ["getrandom"]}
futures-util = {version = "0.3.31"}