From edf600e870e17fb95f17fccaddf529d0ef136f24 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 26 Apr 2026 23:44:10 +0000 Subject: [PATCH] chore(deps): bump tokio-tungstenite from 0.21.0 to 0.29.0 Bumps [tokio-tungstenite](https://github.com/snapview/tokio-tungstenite) from 0.21.0 to 0.29.0. - [Changelog](https://github.com/snapview/tokio-tungstenite/blob/master/CHANGELOG.md) - [Commits](https://github.com/snapview/tokio-tungstenite/compare/v0.21.0...v0.29.0) --- updated-dependencies: - dependency-name: tokio-tungstenite dependency-version: 0.29.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 52 +++++++++++++++++++++++++++++++++---------- Cargo.toml | 2 +- src/client/Cargo.toml | 2 +- src/server/Cargo.toml | 2 +- 4 files changed, 43 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1dd099b..784c653 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -963,9 +963,9 @@ dependencies = [ "syntect", "tokio", "tokio-rustls", - "tokio-tungstenite", + "tokio-tungstenite 0.29.0", "toml", - "tungstenite", + "tungstenite 0.21.0", "webrtc", "windows-capture", "x25519-dalek", @@ -1003,8 +1003,8 @@ dependencies = [ "sha2", "tokio", "tokio-rustls", - "tokio-tungstenite", - "tungstenite", + "tokio-tungstenite 0.29.0", + "tungstenite 0.21.0", "zeroize", ] @@ -1033,8 +1033,8 @@ dependencies = [ "sha2", "tokio", "tokio-rustls", - "tokio-tungstenite", - "tungstenite", + "tokio-tungstenite 0.29.0", + "tungstenite 0.21.0", ] [[package]] @@ -1885,7 +1885,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -5081,7 +5081,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys 0.12.1", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -5398,7 +5398,7 @@ dependencies = [ "static_assertions", "time", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.21.0", "tracing", "typemap_rev", "typesize", @@ -5857,7 +5857,7 @@ dependencies = [ "getrandom 0.4.2", "once_cell", "rustix 1.1.4", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -6094,7 +6094,19 @@ dependencies = [ "native-tls", "tokio", "tokio-native-tls", - "tungstenite", + "tungstenite 0.21.0", +] + +[[package]] +name = "tokio-tungstenite" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c" +dependencies = [ + "futures-util", + "log", + "tokio", + "tungstenite 0.29.0", ] [[package]] @@ -6301,6 +6313,22 @@ dependencies = [ "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", + "http", + "httparse", + "log", + "rand 0.9.4", + "sha1 0.10.6", + "thiserror 2.0.18", +] + [[package]] name = "turn" version = "0.17.1" @@ -6984,7 +7012,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 3a1c2f1..105b4b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ path = "src/lib.rs" [dependencies] tokio = { version = "1", features = ["full"] } -tokio-tungstenite = "0.21" +tokio-tungstenite = "0.29" tungstenite = "0.21" futures-util = "0.3" serde = { version = "1", features = ["derive"] } diff --git a/src/client/Cargo.toml b/src/client/Cargo.toml index d1cdb02..be9fa5b 100644 --- a/src/client/Cargo.toml +++ b/src/client/Cargo.toml @@ -18,7 +18,7 @@ path = "src/main.rs" [dependencies] chatify = { path = "../../" } tokio = { version = "1", features = ["full"] } -tokio-tungstenite = "0.21" +tokio-tungstenite = "0.29" tungstenite = "0.21" futures-util = "0.3" serde = { version = "1", features = ["derive"] } diff --git a/src/server/Cargo.toml b/src/server/Cargo.toml index 5d6ae69..ea81960 100644 --- a/src/server/Cargo.toml +++ b/src/server/Cargo.toml @@ -18,7 +18,7 @@ path = "src/main.rs" [dependencies] chatify = { path = "../../" } tokio = { version = "1", features = ["full"] } -tokio-tungstenite = "0.21" +tokio-tungstenite = "0.29" tungstenite = "0.21" futures-util = "0.3" serde = { version = "1", features = ["derive"] }