From 0132d3329fa6a0fb31f0fb2c6d56fda1ca642f4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Apr 2025 16:31:10 +0000 Subject: [PATCH] build(deps): bump tokio from 1.44.0 to 1.44.2 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.44.0 to 1.44.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.44.0...tokio-1.44.2) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.44.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- actix-ws/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 27f8d3f54..fcdbecadd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2490,9 +2490,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.44.0" +version = "1.44.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9975ea0f48b5aa3972bf2d888c238182458437cc2a19374b81b25cdf1023fb3a" +checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48" dependencies = [ "backtrace", "bytes", diff --git a/actix-ws/Cargo.toml b/actix-ws/Cargo.toml index c6a90976c..c538aa6ab 100644 --- a/actix-ws/Cargo.toml +++ b/actix-ws/Cargo.toml @@ -20,12 +20,12 @@ actix-http = { version = "3", default-features = false, features = ["ws"] } actix-web = { version = "4", default-features = false } bytestring = "1" futures-core = "0.3.17" -tokio = { version = "1.24", features = ["sync"] } +tokio = { version = "1.44", features = ["sync"] } [dev-dependencies] actix-web = "4.8" futures-util = { version = "0.3.17", default-features = false, features = ["std"] } -tokio = { version = "1.24", features = ["sync", "rt", "macros"] } +tokio = { version = "1.44", features = ["sync", "rt", "macros"] } tracing = "0.1.30" tracing-subscriber = { version = "0.3", features = ["env-filter"] }