From 2c75e6ccec22956721451369f010a9da3d7df1e9 Mon Sep 17 00:00:00 2001 From: tprevot Date: Sat, 18 Jul 2026 23:05:09 +0200 Subject: [PATCH] chore(deps): bump tokio_tungstenite to v0.30 --- Cargo.lock | 41 ++++++++++++++++++++------------ Cargo.toml | 2 +- crates/engineioxide/CHANGELOG.md | 3 +++ 3 files changed, 30 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 85c39502..aef23266 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -853,7 +853,7 @@ dependencies = [ "itoa", "memchr", "pin-project-lite", - "rand 0.10.1", + "rand 0.10.2", "serde", "serde_json", "smallvec", @@ -1229,7 +1229,7 @@ version = "0.1.0" dependencies = [ "hyper", "hyper-util", - "rand 0.10.1", + "rand 0.10.2", "serde_json", "socketioxide", "tokio", @@ -1761,7 +1761,7 @@ dependencies = [ "serde", "serde_bytes", "serde_with", - "sha1", + "sha1 0.10.6", "sha2 0.10.9", "socket2 0.6.3", "stringprep", @@ -1974,7 +1974,7 @@ dependencies = [ "hmac 0.13.0", "md-5 0.11.0", "memchr", - "rand 0.10.1", + "rand 0.10.2", "sha2 0.11.0", "stringprep", ] @@ -2083,9 +2083,9 @@ dependencies = [ [[package]] name = "rand" -version = "0.10.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207" +checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" dependencies = [ "chacha20", "getrandom 0.4.2", @@ -2481,6 +2481,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.2", +] + [[package]] name = "sha2" version = "0.10.9" @@ -2591,7 +2602,7 @@ dependencies = [ "hyper", "matchit 0.9.2", "pin-project-lite", - "rand 0.10.1", + "rand 0.10.2", "serde", "serde_json", "socketioxide-core", @@ -2837,7 +2848,7 @@ dependencies = [ "log", "md-5 0.11.0", "memchr", - "rand 0.10.1", + "rand 0.10.2", "serde", "serde_json", "sha2 0.11.0", @@ -3088,7 +3099,7 @@ dependencies = [ "pin-project-lite", "postgres-protocol", "postgres-types", - "rand 0.10.1", + "rand 0.10.2", "socket2 0.6.3", "tokio", "tokio-util", @@ -3118,9 +3129,9 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.29.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c" +checksum = "17a073bfed563fa236697a068031408a93cd9522e08abf9933ead3e73411bd71" dependencies = [ "futures-util", "log", @@ -3234,17 +3245,17 @@ dependencies = [ [[package]] name = "tungstenite" -version = "0.29.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8" +checksum = "e48ac77174b19c110a50ab2128b24215ac9cb40e0e12e093fb602d175c569d22" dependencies = [ "bytes", "data-encoding", "http", "httparse", "log", - "rand 0.9.4", - "sha1", + "rand 0.10.2", + "sha1 0.11.0", "thiserror", ] diff --git a/Cargo.toml b/Cargo.toml index 2dd4f1cf..e8b48ca6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ bytes = { version = "1.11", features = ["serde"] } futures-core = "0.3" futures-util = { version = "0.3", default-features = false, features = ["std"] } tokio = "1.51" -tokio-tungstenite = "0.29" +tokio-tungstenite = "0.30" serde = { version = "1.0", features = ["derive"] } smallvec = { version = "1.15", features = ["union", "serde"] } serde_json = "1.0" diff --git a/crates/engineioxide/CHANGELOG.md b/crates/engineioxide/CHANGELOG.md index 946c89fd..e729ef7d 100644 --- a/crates/engineioxide/CHANGELOG.md +++ b/crates/engineioxide/CHANGELOG.md @@ -1,3 +1,6 @@ +# engineioxide 0.17.7 +* chore(deps): bump `tokio_tungstenite` to v0.30 +* # engineioxide 0.17.6 * feat: add `emit_{binary,many}_volatile` methods to `Socket` to emit volatile packets.