From 04eb0c2c2711776742fee4d7120ef8ea96df6d96 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Aug 2026 21:05:45 +0000 Subject: [PATCH] build(deps): bump tokio-tungstenite in the http group across 1 directory Bumps the http group with 1 update in the / directory: [tokio-tungstenite](https://github.com/snapview/tokio-tungstenite). Updates `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 dependency-group: http ... Signed-off-by: dependabot[bot] --- Cargo.lock | 48 +++++++++++++++++++++++++------- crates/test-utils/Cargo.toml | 2 +- crates/video-streamer/Cargo.toml | 2 +- devolutions-gateway/Cargo.toml | 2 +- jetsocat/Cargo.toml | 2 +- testsuite/Cargo.toml | 2 +- 6 files changed, 43 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a6df6c2b6..047209cf0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -534,7 +534,7 @@ dependencies = [ "sha1 0.10.7", "sync_wrapper 1.0.2", "tokio 1.52.3", - "tokio-tungstenite", + "tokio-tungstenite 0.29.0", "tower 0.5.3", "tower-layer", "tower-service", @@ -1851,7 +1851,7 @@ dependencies = [ "tokio-retry", "tokio-rustls", "tokio-test", - "tokio-tungstenite", + "tokio-tungstenite 0.30.0", "tower 0.5.3", "tower-http 0.5.2", "tracing", @@ -1860,7 +1860,7 @@ dependencies = [ "traffic-audit", "traffic-audit-libsql", "transport", - "tungstenite", + "tungstenite 0.29.0", "typed-builder", "ulid", "url", @@ -3766,7 +3766,7 @@ dependencies = [ "sysinfo", "tinyjson", "tokio 1.52.3", - "tokio-tungstenite", + "tokio-tungstenite 0.30.0", "tracing", "tracing-appender", "tracing-subscriber", @@ -7502,7 +7502,7 @@ dependencies = [ "portpicker", "proptest", "tokio 1.52.3", - "tokio-tungstenite", + "tokio-tungstenite 0.30.0", "transport", ] @@ -7547,7 +7547,7 @@ dependencies = [ "test-utils", "tokio 1.52.3", "tokio-rustls", - "tokio-tungstenite", + "tokio-tungstenite 0.30.0", "tokio-util", "typed-builder", "uuid", @@ -7841,6 +7841,18 @@ name = "tokio-tungstenite" version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c" +dependencies = [ + "futures-util", + "log", + "tokio 1.52.3", + "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", @@ -7851,7 +7863,7 @@ dependencies = [ "tokio 1.52.3", "tokio-native-tls", "tokio-rustls", - "tungstenite", + "tungstenite 0.30.0", ] [[package]] @@ -8383,11 +8395,27 @@ dependencies = [ "http 1.4.2", "httparse", "log", - "native-tls", "rand 0.9.5", + "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 1.12.1", + "data-encoding", + "http 1.4.2", + "httparse", + "log", + "native-tls", + "rand 0.10.2", "rustls 0.23.43", "rustls-pki-types", - "sha1 0.10.7", + "sha1 0.11.0", "thiserror 2.0.20", ] @@ -8639,7 +8667,7 @@ dependencies = [ "num_cpus", "thiserror 2.0.20", "tokio 1.52.3", - "tokio-tungstenite", + "tokio-tungstenite 0.30.0", "tokio-util", "tracing", "tracing-subscriber", diff --git a/crates/test-utils/Cargo.toml b/crates/test-utils/Cargo.toml index 6371d0d3e..903994865 100644 --- a/crates/test-utils/Cargo.toml +++ b/crates/test-utils/Cargo.toml @@ -11,7 +11,7 @@ workspace = true [dependencies] transport = { path = "../transport" } tokio = { version = "1.52", features = ["io-util"] } -tokio-tungstenite = "0.29" +tokio-tungstenite = "0.30" futures-util = "0.3" proptest = "1.7" anyhow = "1.0" diff --git a/crates/video-streamer/Cargo.toml b/crates/video-streamer/Cargo.toml index 857b3aecc..2e06b5d75 100644 --- a/crates/video-streamer/Cargo.toml +++ b/crates/video-streamer/Cargo.toml @@ -44,7 +44,7 @@ tokio = { version = "1.52", features = [ ] } axum = { version = "0.8", features = ["ws"] } futures = "0.3" -tokio-tungstenite = "0.29" +tokio-tungstenite = "0.30" transport = { path = "../transport" } [lints] diff --git a/devolutions-gateway/Cargo.toml b/devolutions-gateway/Cargo.toml index 8a284666b..c100b241d 100644 --- a/devolutions-gateway/Cargo.toml +++ b/devolutions-gateway/Cargo.toml @@ -104,7 +104,7 @@ axum = { version = "0.8", default-features = false, features = ["http1", "json", axum-extra = { version = "0.10", features = ["query", "async-read-body", "typed-header"] } tower-http = { version = "0.5", features = ["cors", "fs"] } tungstenite = "0.29" # Should be the same version as `axum` (we perform error downcasting for better error reporting) -tokio-tungstenite = { version = "0.29", features = ["rustls-tls-native-roots"] } # Should use the same version of tungstenite as `axum` +tokio-tungstenite = { version = "0.30", features = ["rustls-tls-native-roots"] } # Should use the same version of tungstenite as `axum` http-body-util = "0.1" tokio-retry = "0.3" zip = { version = "2.4", default-features = false } diff --git a/jetsocat/Cargo.toml b/jetsocat/Cargo.toml index 3e7daa802..5f7fdf642 100644 --- a/jetsocat/Cargo.toml +++ b/jetsocat/Cargo.toml @@ -41,7 +41,7 @@ humantime = "2.2" # async tokio = { version = "1.52", features = ["io-std", "io-util", "net", "fs", "signal", "time", "rt", "sync", "process", "rt-multi-thread", "macros"] } -tokio-tungstenite = "0.29" +tokio-tungstenite = "0.30" futures-util = "0.3" transport = { path = "../crates/transport" } diff --git a/testsuite/Cargo.toml b/testsuite/Cargo.toml index 7961358b6..d5d9c2464 100644 --- a/testsuite/Cargo.toml +++ b/testsuite/Cargo.toml @@ -28,7 +28,7 @@ tempfile = "3" tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "net", "process"] } tokio-util = "0.7" typed-builder = "0.21" -tokio-tungstenite = { version = "0.29", features = ["rustls-tls-native-roots"] } +tokio-tungstenite = { version = "0.30", features = ["rustls-tls-native-roots"] } [dev-dependencies] agent-tunnel = { path = "../crates/agent-tunnel", features = ["test-utils"] }