From 5a9d5ddfec2c203c40aaa2ef83c1878454db95ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 08:25:38 +0000 Subject: [PATCH] chore(deps): bump tungstenite from 0.24.0 to 0.30.0 Bumps [tungstenite](https://github.com/snapview/tungstenite-rs) from 0.24.0 to 0.30.0. - [Changelog](https://github.com/snapview/tungstenite-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/snapview/tungstenite-rs/compare/v0.24.0...v0.30.0) --- updated-dependencies: - dependency-name: tungstenite dependency-version: 0.30.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 ++++++++++++++++++-- Cargo.toml | 2 +- crates/rustapi-ws/Cargo.toml | 2 +- 3 files changed, 20 insertions(+), 4 deletions(-) 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"] }