From 9c69e25933f5fd3301ce64655de3893bd25c83fb Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 24 Feb 2026 11:16:45 +0000 Subject: [PATCH] Updated tokio-tungstenite --- Cargo.lock | 35 ++++++++++++++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 33 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cc0d8cf..d5aaff9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1452,7 +1452,7 @@ dependencies = [ "thiserror 2.0.18", "tokio", "tokio-stream", - "tokio-tungstenite", + "tokio-tungstenite 0.27.0", "tokio-util", "tracing", "wildmatch", @@ -2207,7 +2207,7 @@ dependencies = [ "strip-ansi-escapes", "tempfile", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.28.0", "toml", "uuid", "walkdir", @@ -2432,7 +2432,19 @@ dependencies = [ "futures-util", "log", "tokio", - "tungstenite", + "tungstenite 0.27.0", +] + +[[package]] +name = "tokio-tungstenite" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d25a406cddcc431a75d3d9afc6a7c0f7428d4891dd973e4d54c56b46127bf857" +dependencies = [ + "futures-util", + "log", + "tokio", + "tungstenite 0.28.0", ] [[package]] @@ -2608,6 +2620,23 @@ dependencies = [ "utf-8", ] +[[package]] +name = "tungstenite" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442" +dependencies = [ + "bytes 1.11.1", + "data-encoding", + "http", + "httparse", + "log", + "rand", + "sha1", + "thiserror 2.0.18", + "utf-8", +] + [[package]] name = "typenum" version = "1.19.0" diff --git a/Cargo.toml b/Cargo.toml index 374e2a4..6472543 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,5 +26,5 @@ tempfile = "3" tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] } toml = "1.0.3+spec-1.1.0" uuid = { version = "1.21.0", features = ["v4", "serde"] } -tokio-tungstenite = "0.27" +tokio-tungstenite = "0.28.0" walkdir = "2.5.0"