diff --git a/Cargo.lock b/Cargo.lock index dd34869..38a5b05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -630,6 +630,17 @@ dependencies = [ "hashbrown 0.15.3", ] +[[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 = "itoa" version = "1.0.15" @@ -1453,17 +1464,19 @@ dependencies = [ [[package]] name = "tokio" -version = "1.45.1" +version = "1.46.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779" +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/Cargo.toml b/Cargo.toml index 654a5ce..e320317 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ schemars = "0.8.22" serde_json = "1.0.140" serde = { version = "1.0.219", features = ["derive"] } serde_yaml = "0.9.34" -tokio = { version = "1.45.1", features = ["full"] } +tokio = { version = "1.46.1", features = ["full"] } tower = { version = "0.5.2", features = ["limit"] } tracing = "0.1.41" tracing-subscriber = "0.3.19"