diff --git a/Cargo.lock b/Cargo.lock index f597527cb..f6aa312b4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1463,6 +1463,17 @@ dependencies = [ "generic-array", ] +[[package]] +name = "io-uring" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013" +dependencies = [ + "bitflags", + "cfg-if", + "libc", +] + [[package]] name = "ipnet" version = "2.11.0" @@ -2507,17 +2518,19 @@ dependencies = [ [[package]] name = "tokio" -version = "1.44.2" +version = "1.46.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48" +checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17" dependencies = [ "backtrace", "bytes", + "io-uring", "libc", "mio", "parking_lot", "pin-project-lite", "signal-hook-registry", + "slab", "socket2", "tokio-macros", "windows-sys 0.52.0", diff --git a/actix-ws/Cargo.toml b/actix-ws/Cargo.toml index c6a90976c..776e70fc9 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.46", 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.46", features = ["sync", "rt", "macros"] } tracing = "0.1.30" tracing-subscriber = { version = "0.3", features = ["env-filter"] }