diff --git a/Cargo.lock b/Cargo.lock index 8d7bf4e..595eb16 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -765,6 +765,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 2.9.1", + "cfg-if", + "libc", +] + [[package]] name = "is_terminal_polyfill" version = "1.70.1" @@ -1461,17 +1472,19 @@ dependencies = [ [[package]] name = "tokio" -version = "1.45.1" +version = "1.46.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779" +checksum = "1140bb80481756a8cbe10541f37433b459c5aa1e727b4c020fbfebdc25bf3ec4" 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/Cargo.toml b/Cargo.toml index ff969dc..c247b10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ serde_json = { version = "1.0.140", default-features = false, features = [] } serde_yaml = { version = "0.9.34", default-features = false, features = [] } thiserror = "2.0.12" time = { version = "0.3.41", default-features = false, features = ["parsing", "local-offset", "macros"] } -tokio = { version = "1.45.1", default-features = false, features = ["macros", "rt-multi-thread", "full"] } +tokio = { version = "1.46.0", default-features = false, features = ["macros", "rt-multi-thread", "full"] } tokio-stream = { version = "0.1.17", default-features = false, features = [] } tokio-util = { version = "0.7.15", default-features = false, features = ["io"] } tracing = { version = "0.1.41", default-features = false, features = [] }