diff --git a/Cargo.lock b/Cargo.lock index 2768ddee..d31dfa06 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2100,9 +2100,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.44.0" +version = "1.44.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9975ea0f48b5aa3972bf2d888c238182458437cc2a19374b81b25cdf1023fb3a" +checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a" dependencies = [ "backtrace", "bytes", diff --git a/actix-codec/Cargo.toml b/actix-codec/Cargo.toml index 89e0396a..e9eac6b3 100644 --- a/actix-codec/Cargo.toml +++ b/actix-codec/Cargo.toml @@ -20,7 +20,7 @@ futures-core = { version = "0.3.7", default-features = false } futures-sink = { version = "0.3.7", default-features = false } memchr = "2.3" pin-project-lite = "0.2" -tokio = "1.23.1" +tokio = "1.44.1" tokio-util = { version = "0.7", features = ["codec", "io"] } tracing = { version = "0.1.30", default-features = false, features = ["log"] } diff --git a/actix-rt/Cargo.toml b/actix-rt/Cargo.toml index bee209cc..d43781af 100644 --- a/actix-rt/Cargo.toml +++ b/actix-rt/Cargo.toml @@ -23,14 +23,14 @@ io-uring = ["tokio-uring"] actix-macros = { version = "0.2.3", optional = true } futures-core = { version = "0.3", default-features = false } -tokio = { version = "1.23.1", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] } +tokio = { version = "1.44.1", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] } # runtime for `io-uring` feature [target.'cfg(target_os = "linux")'.dependencies] tokio-uring = { version = "0.5", optional = true } [dev-dependencies] -tokio = { version = "1.23.1", features = ["full"] } +tokio = { version = "1.44.1", features = ["full"] } [lints] workspace = true diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index 8e44140a..2a904e7c 100644 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -30,7 +30,7 @@ futures-core = { version = "0.3.17", default-features = false, features = ["allo futures-util = { version = "0.3.17", default-features = false, features = ["alloc"] } mio = { version = "1", features = ["os-poll", "net"] } socket2 = "0.5" -tokio = { version = "1.23.1", features = ["sync"] } +tokio = { version = "1.44.1", features = ["sync"] } tracing = { version = "0.1.30", default-features = false, features = ["log"] } # runtime for `io-uring` feature @@ -44,7 +44,7 @@ actix-rt = "2.8" bytes = "1" futures-util = { version = "0.3.17", default-features = false, features = ["sink", "async-await-macro"] } pretty_env_logger = "0.5" -tokio = { version = "1.23.1", features = ["io-util", "rt-multi-thread", "macros", "fs"] } +tokio = { version = "1.44.1", features = ["io-util", "rt-multi-thread", "macros", "fs"] } [lints] workspace = true diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index a855fb83..2ce5fb3a 100644 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -71,7 +71,7 @@ actix-utils = "3" futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] } impl-more = "0.1" pin-project-lite = "0.2.7" -tokio = "1.23.1" +tokio = "1.44.1" tokio-util = "0.7" tracing = { version = "0.1.30", default-features = false, features = ["log"] } diff --git a/local-channel/Cargo.toml b/local-channel/Cargo.toml index 466b9a40..b29a4b1a 100644 --- a/local-channel/Cargo.toml +++ b/local-channel/Cargo.toml @@ -19,4 +19,4 @@ local-waker = "0.1" [dev-dependencies] futures-util = { version = "0.3.17", default-features = false } -tokio = { version = "1.23.1", features = ["rt", "macros"] } +tokio = { version = "1.44.1", features = ["rt", "macros"] }