record-daemon: fix league websocket connection

This commit is contained in:
2026-03-19 18:38:51 +01:00
parent f062cee010
commit 2ddb953321
3 changed files with 168 additions and 13 deletions

View File

@@ -15,8 +15,10 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# WebSocket for LQP
tokio-tungstenite = "0.21"
# WebSocket for LQP (with TLS support)
tokio-tungstenite = { version = "0.21", features = ["rustls-tls-webpki-roots"] }
rustls = "0.22"
rustls-pki-types = "1"
# HTTP client for LQP REST API
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }