From c14d462ef09b43eb297643a708c09c3652aa7835 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 11:56:32 +0000 Subject: [PATCH] Build(deps): Bump the rust-sdk group Bumps the rust-sdk group in /packages/rust/slop-ai with 2 updates: [tokio](https://github.com/tokio-rs/tokio) and [tokio-tungstenite](https://github.com/snapview/tokio-tungstenite). Updates `tokio` from 1.50.0 to 1.51.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.50.0...tokio-1.51.0) Updates `tokio-tungstenite` from 0.26.2 to 0.28.0 - [Changelog](https://github.com/snapview/tokio-tungstenite/blob/master/CHANGELOG.md) - [Commits](https://github.com/snapview/tokio-tungstenite/compare/v0.26.2...v0.28.0) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.51.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-sdk - dependency-name: tokio-tungstenite dependency-version: 0.28.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-sdk ... Signed-off-by: dependabot[bot] --- packages/rust/slop-ai/Cargo.lock | 43 ++++++-------------------------- packages/rust/slop-ai/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 37 deletions(-) diff --git a/packages/rust/slop-ai/Cargo.lock b/packages/rust/slop-ai/Cargo.lock index e4639d2..69510d7 100644 --- a/packages/rust/slop-ai/Cargo.lock +++ b/packages/rust/slop-ai/Cargo.lock @@ -37,7 +37,7 @@ dependencies = [ "sha1", "sync_wrapper", "tokio", - "tokio-tungstenite 0.28.0", + "tokio-tungstenite", "tower", "tower-layer", "tower-service", @@ -521,7 +521,7 @@ dependencies = [ "serde_json", "thiserror", "tokio", - "tokio-tungstenite 0.26.2", + "tokio-tungstenite", ] [[package]] @@ -579,9 +579,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.50.0" +version = "1.51.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" +checksum = "f66bf9585cda4b724d3e78ab34b73fb2bbaba9011b9bfdf69dc836382ea13b8c" dependencies = [ "bytes", "libc", @@ -594,27 +594,15 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.6.1" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c" +checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" dependencies = [ "proc-macro2", "quote", "syn", ] -[[package]] -name = "tokio-tungstenite" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" -dependencies = [ - "futures-util", - "log", - "tokio", - "tungstenite 0.26.2", -] - [[package]] name = "tokio-tungstenite" version = "0.28.0" @@ -624,7 +612,7 @@ dependencies = [ "futures-util", "log", "tokio", - "tungstenite 0.28.0", + "tungstenite", ] [[package]] @@ -675,23 +663,6 @@ dependencies = [ "once_cell", ] -[[package]] -name = "tungstenite" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" -dependencies = [ - "bytes", - "data-encoding", - "http", - "httparse", - "log", - "rand", - "sha1", - "thiserror", - "utf-8", -] - [[package]] name = "tungstenite" version = "0.28.0" diff --git a/packages/rust/slop-ai/Cargo.toml b/packages/rust/slop-ai/Cargo.toml index fed0c6e..bcfab55 100644 --- a/packages/rust/slop-ai/Cargo.toml +++ b/packages/rust/slop-ai/Cargo.toml @@ -29,7 +29,7 @@ thiserror = "2" # Optional — pulled by feature flags tokio = { version = "1", features = ["rt", "io-util", "io-std", "net", "sync", "macros", "rt-multi-thread", "time"], optional = true } -tokio-tungstenite = { version = "0.26", optional = true } +tokio-tungstenite = { version = "0.28", optional = true } futures-util = { version = "0.3", optional = true } axum = { version = "0.8", features = ["ws"], optional = true }