From 50b4cdb2a22ca70a8a332c6d37f7c18d807ac8a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Jan 2026 19:07:16 +0000 Subject: [PATCH] Bump tungstenite from 0.24.0 to 0.28.0 Bumps [tungstenite](https://github.com/snapview/tungstenite-rs) from 0.24.0 to 0.28.0. - [Changelog](https://github.com/snapview/tungstenite-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/snapview/tungstenite-rs/compare/v0.24.0...v0.28.0) --- updated-dependencies: - dependency-name: tungstenite dependency-version: 0.28.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 21 +++++++++++++++++++-- Cargo.toml | 2 +- crates/rustapi-ws/Cargo.toml | 2 +- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 46461a2f..16e1dc55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3325,7 +3325,7 @@ dependencies = [ "tokio", "tokio-tungstenite", "tracing", - "tungstenite", + "tungstenite 0.28.0", "url", ] @@ -4305,7 +4305,7 @@ dependencies = [ "futures-util", "log", "tokio", - "tungstenite", + "tungstenite 0.24.0", ] [[package]] @@ -4612,6 +4612,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", + "data-encoding", + "http 1.4.0", + "httparse", + "log", + "rand 0.9.2", + "sha1", + "thiserror 2.0.17", + "utf-8", +] + [[package]] name = "typenum" version = "1.19.0" diff --git a/Cargo.toml b/Cargo.toml index 32e77761..8af812f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -88,7 +88,7 @@ criterion = { version = "0.5", features = ["html_reports"] } # WebSocket tokio-tungstenite = "0.24" -tungstenite = "0.24" +tungstenite = "0.28" # Template engine tera = "1.19" diff --git a/crates/rustapi-ws/Cargo.toml b/crates/rustapi-ws/Cargo.toml index 64edb974..e8576ed1 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.28" # Async runtime tokio = { workspace = true, features = ["sync", "macros", "rt"] }