From 2fcfb05ad2c8e9a92ef79e34a37a24f44183331f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Dec 2024 12:23:22 +0000 Subject: [PATCH] chore(deps): bump tokio from 1.40.0 to 1.41.1 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.40.0 to 1.41.1. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.40.0...tokio-1.41.1) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- engineio/Cargo.toml | 4 ++-- socketio/Cargo.toml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e121b146..026aeb99 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2348,9 +2348,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.40.0" +version = "1.41.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" +checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33" dependencies = [ "backtrace", "bytes", diff --git a/engineio/Cargo.toml b/engineio/Cargo.toml index b38c5a6c..ae376925 100644 --- a/engineio/Cargo.toml +++ b/engineio/Cargo.toml @@ -23,7 +23,7 @@ serde_json = "1.0" http = "1.1.0" tokio-tungstenite = { version = "0.21.0", features = ["native-tls"] } tungstenite = "0.21.0" -tokio = "1.40.0" +tokio = "1.41.1" futures-util = { version = "0.3", default-features = false, features = ["sink"] } async-trait = "0.1.83" async-stream = "0.3.6" @@ -36,7 +36,7 @@ criterion = { version = "0.5.1", features = ["async_tokio"] } lazy_static = "1.4.0" [dev-dependencies.tokio] -version = "1.40.0" +version = "1.41.1" # we need the `#[tokio::test]` macro features = ["macros"] diff --git a/socketio/Cargo.toml b/socketio/Cargo.toml index 8e9b3deb..db5ae40c 100644 --- a/socketio/Cargo.toml +++ b/socketio/Cargo.toml @@ -24,7 +24,7 @@ serde_json = "1.0" thiserror = "1.0" native-tls = "0.2.12" url = "2.5.4" -tokio = { version = "1.40.0", optional = true } +tokio = { version = "1.41.1", optional = true } futures-util = { version = "0.3", default-features = false, features = ["sink"], optional = true } async-stream = { version = "0.3.6", optional = true } log = "0.4.22" @@ -35,7 +35,7 @@ cargo-tarpaulin = "0.18.5" serial_test = "3.0.0" [dev-dependencies.tokio] -version = "1.40.0" +version = "1.41.1" # we need the `#[tokio::test]` macro features = ["macros", "rt-multi-thread"]