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"] }