diff --git a/Cargo.lock b/Cargo.lock index d7e4708a..7faba378 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -260,6 +260,17 @@ dependencies = [ "tokio", ] +[[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 = "lazy_static" version = "1.5.0" @@ -299,6 +310,17 @@ dependencies = [ "adler2", ] +[[package]] +name = "mio" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" +dependencies = [ + "libc", + "wasi 0.11.0+wasi-snapshot-preview1", + "windows-sys", +] + [[package]] name = "num-traits" version = "0.2.19" @@ -616,12 +638,16 @@ 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", + "io-uring", + "libc", + "mio", "pin-project-lite", + "slab", "tokio-macros", ] diff --git a/integration_tests/Cargo.toml b/integration_tests/Cargo.toml index fed5e66f..6274532d 100644 --- a/integration_tests/Cargo.toml +++ b/integration_tests/Cargo.toml @@ -34,7 +34,7 @@ indoc = "2" rstest = "0.25" rustversion = "1.0.21" tempfile = "3.20.0" -tokio = { version = "1.45", features = ["time", "macros", "rt"] } +tokio = { version = "1.46", features = ["time", "macros", "rt"] } [[bin]] name = "integration_tests"