From 7ff4cdf4770671de55667ee6ff346b1e4e5240cd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Sep 2026 11:44:52 +0000 Subject: [PATCH] chore(deps): bump tokio-tungstenite from 0.29.0 to 0.30.0 Bumps [tokio-tungstenite](https://github.com/snapview/tokio-tungstenite) from 0.29.0 to 0.30.0. - [Changelog](https://github.com/snapview/tokio-tungstenite/blob/master/CHANGELOG.md) - [Commits](https://github.com/snapview/tokio-tungstenite/compare/v0.29.0...v0.30.0) --- updated-dependencies: - dependency-name: tokio-tungstenite dependency-version: 0.30.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 51 ++++++++++++++++++++++++++++++++++++++----- crates/tui/Cargo.toml | 2 +- 2 files changed, 46 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 09806df9d..a1274dd73 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -461,10 +461,10 @@ dependencies = [ "serde_json", "serde_path_to_error", "serde_urlencoded", - "sha1", + "sha1 0.10.7", "sync_wrapper", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.29.0", "tower", "tower-layer", "tower-service", @@ -2360,7 +2360,7 @@ dependencies = [ "thiserror 2.0.20", "tiny_http", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.30.0", "tokio-util", "toml 1.1.4+spec-1.1.0", "toml_edit 0.25.13+spec-1.1.0", @@ -5414,6 +5414,17 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "sha1" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.0", + "digest 0.11.3", +] + [[package]] name = "sha2" version = "0.10.9" @@ -6133,7 +6144,19 @@ dependencies = [ "futures-util", "log", "tokio", - "tungstenite", + "tungstenite 0.29.0", +] + +[[package]] +name = "tokio-tungstenite" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17a073bfed563fa236697a068031408a93cd9522e08abf9933ead3e73411bd71" +dependencies = [ + "futures-util", + "log", + "tokio", + "tungstenite 0.30.0", ] [[package]] @@ -6399,7 +6422,23 @@ dependencies = [ "httparse", "log", "rand 0.9.5", - "sha1", + "sha1 0.10.7", + "thiserror 2.0.20", +] + +[[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", ] @@ -7378,7 +7417,7 @@ dependencies = [ "rand 0.8.7", "serde", "serde_repr", - "sha1", + "sha1 0.10.7", "static_assertions", "tracing", "uds_windows", diff --git a/crates/tui/Cargo.toml b/crates/tui/Cargo.toml index 3c22bdb19..1cdfeaaa9 100644 --- a/crates/tui/Cargo.toml +++ b/crates/tui/Cargo.toml @@ -120,7 +120,7 @@ ghosty-build-support = { path = "../build-support", version = "0.0.23" } [dev-dependencies] # Drives a real WebSocket handshake against the ACP transport. `oneshot`-style # router tests cannot: they never perform the upgrade. -tokio-tungstenite = "0.29" +tokio-tungstenite = "0.30" cucumber = "0.23.0" jsonschema.workspace = true wiremock = "0.6"