diff --git a/Cargo.lock b/Cargo.lock index f2a8439..25e5875 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1528,6 +1528,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.10.1" @@ -2560,17 +2571,19 @@ dependencies = [ [[package]] name = "tokio" -version = "1.44.1" +version = "1.46.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f382da615b842244d4b8738c82ed1275e6c5dd90c459a30941cd07080b06c91a" +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 a0eacf5..c90c93b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ fuser = "0.15.1" futures = "0.3.31" google-cloud-storage = "0.24.0" libc = "0.2.171" -tokio = { version = "1.44.1", features = ["full"] } +tokio = { version = "1.46.1", features = ["full"] } time = "0.3.41" tracing = "0.1.41" tracing-subscriber = { version = "0.3.19", features = ["json"] }