diff --git a/Cargo.lock b/Cargo.lock index 3213cce4..5faf4432 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3284,7 +3284,7 @@ dependencies = [ "tokio", "tokio-tungstenite", "tracing", - "tungstenite", + "tungstenite 0.30.0", "url", ] @@ -4218,7 +4218,7 @@ dependencies = [ "futures-util", "log", "tokio", - "tungstenite", + "tungstenite 0.24.0", ] [[package]] @@ -4554,6 +4554,22 @@ dependencies = [ "utf-8", ] +[[package]] +name = "tungstenite" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e48ac77174b19c110a50ab2128b24215ac9cb40e0e12e093fb602d175c569d22" +dependencies = [ + "bytes", + "data-encoding", + "http", + "httparse", + "log", + "rand 0.10.2", + "sha1 0.11.0", + "thiserror 2.0.20", +] + [[package]] name = "typenum" version = "1.20.1" diff --git a/Cargo.toml b/Cargo.toml index 4d475fb0..c2a1917f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -78,7 +78,7 @@ criterion = { version = "0.5", features = ["html_reports"] } # WebSocket tokio-tungstenite = "0.24" -tungstenite = "0.24" +tungstenite = "0.30" # gRPC tonic = "0.14" diff --git a/crates/rustapi-ws/Cargo.toml b/crates/rustapi-ws/Cargo.toml index 5ff2b037..08502f3a 100644 --- a/crates/rustapi-ws/Cargo.toml +++ b/crates/rustapi-ws/Cargo.toml @@ -19,7 +19,7 @@ rustapi-openapi = { workspace = true } # WebSocket implementation tokio-tungstenite = "0.24" -tungstenite = "0.24" +tungstenite = "0.30" # Async runtime tokio = { workspace = true, features = ["sync", "macros", "rt"] }