diff --git a/Cargo.lock b/Cargo.lock index 8db446c..0fd010f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -928,6 +928,17 @@ version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1be380c410bf0595e94992a648ea89db4dd3f3354ba54af206fd2a68cf5ac8e" +[[package]] +name = "io-uring" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b86e202f00093dcba4275d4636b93ef9dd75d025ae560d2521b45ea28ab49013" +dependencies = [ + "bitflags 2.4.0", + "cfg-if", + "libc", +] + [[package]] name = "ipnet" version = "2.8.0" @@ -2404,15 +2415,17 @@ 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", "pin-project-lite", + "slab", "socket2", "tokio-macros", "windows-sys 0.52.0", diff --git a/Cargo.toml b/Cargo.toml index 7c2598b..c18578c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ nu-plugin = "0.104.0" nu-protocol = { version = "0.104.0", features = [ "plugin" ] } prometheus-http-query = "0.8.3" reqwest = { version = "0.12.15", features = [ "native-tls" ] } -tokio = { version ="1.44.2", features = [ "macros", "rt" ] } +tokio = { version ="1.46.1", features = [ "macros", "rt" ] } [dev-dependencies] rstest = { version = "0.25", default-features = false }