From 3b705e8f2918e0cb0594218c38a16a819be3de29 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 May 2024 11:15:33 +0000 Subject: [PATCH] chore(deps): bump tokio from 1.36.0 to 1.37.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.36.0 to 1.37.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.36.0...tokio-1.37.0) --- 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 93b4d30d..274c0c42 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2201,9 +2201,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.36.0" +version = "1.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" +checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" dependencies = [ "backtrace", "bytes", diff --git a/engineio/Cargo.toml b/engineio/Cargo.toml index 9bc5433f..efb657ec 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.36.0" +tokio = "1.37.0" futures-util = { version = "0.3", default-features = false, features = ["sink"] } async-trait = "0.1.79" async-stream = "0.3.5" @@ -36,7 +36,7 @@ criterion = { version = "0.5.1", features = ["async_tokio"] } lazy_static = "1.4.0" [dev-dependencies.tokio] -version = "1.36.0" +version = "1.37.0" # we need the `#[tokio::test]` macro features = ["macros"] diff --git a/socketio/Cargo.toml b/socketio/Cargo.toml index b5f39645..47ed0f20 100644 --- a/socketio/Cargo.toml +++ b/socketio/Cargo.toml @@ -24,7 +24,7 @@ serde_json = "1.0" thiserror = "1.0" native-tls = "0.2.11" url = "2.4.1" -tokio = { version = "1.36.0", optional = true } +tokio = { version = "1.37.0", optional = true } futures-util = { version = "0.3", default-features = false, features = ["sink"], optional = true } async-stream = { version = "0.3.5", optional = true } log = "0.4.21" @@ -35,7 +35,7 @@ cargo-tarpaulin = "0.18.5" serial_test = "3.0.0" [dev-dependencies.tokio] -version = "1.36.0" +version = "1.37.0" # we need the `#[tokio::test]` macro features = ["macros", "rt-multi-thread"]