Basic implementation of websocket

This commit is contained in:
2025-11-20 16:06:00 +01:00
parent 0d8905d842
commit a1b22699e9
7 changed files with 240 additions and 2 deletions

View File

@@ -241,6 +241,20 @@ dependencies = [
"syn",
]
[[package]]
name = "actix-ws"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3a1fb4f9f2794b0aadaf2ba5f14a6f034c7e86957b458c506a8cb75953f2d99"
dependencies = [
"actix-codec",
"actix-http",
"actix-web",
"bytestring",
"futures-core",
"tokio",
]
[[package]]
name = "adler2"
version = "2.0.1"
@@ -3026,6 +3040,7 @@ dependencies = [
"actix-remote-ip",
"actix-session",
"actix-web",
"actix-ws",
"anyhow",
"base16ct 0.3.0",
"bytes",