From e9f84501bc3b87e148b967246380b8e86c23e2e3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 May 2026 14:06:07 +0000 Subject: [PATCH] chore(deps): bump tungstenite from 0.28.0 to 0.29.0 Bumps [tungstenite](https://github.com/snapview/tungstenite-rs) from 0.28.0 to 0.29.0. - [Changelog](https://github.com/snapview/tungstenite-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/snapview/tungstenite-rs/compare/v0.28.0...v0.29.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 | 22 +++++++++++++++++++--- test_client/Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7c3c02a..94fa754 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3112,7 +3112,7 @@ dependencies = [ "log", "miette", "serde_json", - "tungstenite 0.28.0", + "tungstenite 0.29.0", "ureq", "url", ] @@ -3468,6 +3468,23 @@ 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.18", + "utf-8", +] + +[[package]] +name = "tungstenite" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8" dependencies = [ "bytes", "data-encoding", @@ -3480,7 +3497,6 @@ dependencies = [ "sha1", "thiserror 2.0.18", "url", - "utf-8", "webpki-roots 0.26.11", ] @@ -3876,7 +3892,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.48.0", + "windows-sys 0.61.2", ] [[package]] diff --git a/test_client/Cargo.toml b/test_client/Cargo.toml index 10fabda..68da97f 100644 --- a/test_client/Cargo.toml +++ b/test_client/Cargo.toml @@ -7,7 +7,7 @@ authors = ["Robin Appelman "] edition = "2018" [dependencies] -tungstenite = { version = "0.28.0", features = ["rustls-tls-webpki-roots", "url"] } +tungstenite = { version = "0.29.0", features = ["rustls-tls-webpki-roots", "url"] } serde_json = "1.0.142" ureq = "3.2.0" flexi_logger = { version = "0.31.8", features = ["colors"] }