From 3ab9228124d0acc2c66ca5d2d654918d3a518dd4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 12:27:09 +0000 Subject: [PATCH] chore(deps): bump tokio from 1.37.0 to 1.38.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.37.0 to 1.38.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...tokio-1.38.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- engineio/Cargo.toml | 4 ++-- socketio/Cargo.toml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 05fc5bbe..4ff93730 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2201,9 +2201,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.37.0" +version = "1.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" +checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" dependencies = [ "backtrace", "bytes", @@ -2218,9 +2218,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" dependencies = [ "proc-macro2", "quote", diff --git a/engineio/Cargo.toml b/engineio/Cargo.toml index 3e827a89..17825638 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.37.0" +tokio = "1.38.0" futures-util = { version = "0.3", default-features = false, features = ["sink"] } async-trait = "0.1.80" 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.37.0" +version = "1.38.0" # we need the `#[tokio::test]` macro features = ["macros"] diff --git a/socketio/Cargo.toml b/socketio/Cargo.toml index 92598d71..cd91f905 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.37.0", optional = true } +tokio = { version = "1.38.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.37.0" +version = "1.38.0" # we need the `#[tokio::test]` macro features = ["macros", "rt-multi-thread"]