diff --git a/Cargo.lock b/Cargo.lock index 9ce456f..84a5fb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -382,6 +382,17 @@ dependencies = [ "icu_properties", ] +[[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 = "is_terminal_polyfill" version = "1.70.1" @@ -809,15 +820,17 @@ 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", "pin-project-lite", + "slab", "socket2", "tokio-macros", "windows-sys 0.52.0", diff --git a/Cargo.toml b/Cargo.toml index c0884f4..962720b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ mime_guess = "2.0" percent-encoding = "2.3" rcgen = { version = "0.13.2", default-features = false, features = ["ring"] } tokio-rustls = { version = "0.26.2", default-features = false, features = ["logging", "ring", "tls12"] } -tokio = { version = "1.45", features = ["fs", "io-util", "net", "rt-multi-thread", "sync"] } +tokio = { version = "1.46", features = ["fs", "io-util", "net", "rt-multi-thread", "sync"] } url = "2.5.4" [dev-dependencies]