diff --git a/Cargo.lock b/Cargo.lock index 50b8431..cc6ccee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -704,11 +704,12 @@ dependencies = [ [[package]] name = "io-uring" -version = "0.6.4" +version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "595a0399f411a508feb2ec1e970a4a30c249351e30208960d58298de8660b0e5" +checksum = "fdd7bddefd0a8833b88a4b68f90dae22c7450d11b354198baee3874fd811b344" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.9.0", + "cfg-if", "libc", ] diff --git a/Cargo.toml b/Cargo.toml index 561f89c..0c3e95c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ rand = "0.8" libc = "0.2" [target.'cfg(target_os = "linux")'.dependencies] -io-uring = { version = "0.6", optional = true } +io-uring = { version = "0.7", optional = true } [dev-dependencies] tempfile = "3.8"