diff --git a/Cargo.lock b/Cargo.lock index f093df1..5c7f822 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -723,6 +723,17 @@ dependencies = [ "hashbrown", ] +[[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 = "ipnet" version = "2.11.0" @@ -1362,17 +1373,19 @@ dependencies = [ [[package]] name = "tokio" -version = "1.45.0" +version = "1.46.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165" +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 1ecd5f6..c25d770 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,6 +18,6 @@ colored = "3.0.0" html-escape = "0.2.13" regex = "1.11.1" reqwest = "0.12.15" -tokio = { version = "1.45.0", features = ["full"] } +tokio = { version = "1.46.1", features = ["full"] } unescape = "0.1.0" yaml-rust = "0.4.5"