From 05c613679095a667e94308efd70849c364f339aa Mon Sep 17 00:00:00 2001 From: Sebastien Boeuf Date: Mon, 10 Aug 2020 08:51:34 +0200 Subject: [PATCH] io-uring: Move to the crates.io 0.4.0 version Now that io-uring crate has been stabilized, let's move to the latest release 0.4.0 from crates.io. Signed-off-by: Sebastien Boeuf --- Cargo.lock | 5 +++-- block_util/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2d323a94a..1f0c973cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -491,8 +491,9 @@ dependencies = [ [[package]] name = "io-uring" -version = "0.3.5" -source = "git+https://github.com/tokio-rs/io-uring.git?branch=0.4#445fbc4ae4d144b7418d721bf92e657a6c65bfe6" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f7589adca0ddd74f56ed83a5098b45e3abf264dc27e150a8bec3397fcc34338" dependencies = [ "bitflags 1.2.1", "libc", diff --git a/block_util/Cargo.toml b/block_util/Cargo.toml index cc90c630b..52390a9ef 100644 --- a/block_util/Cargo.toml +++ b/block_util/Cargo.toml @@ -9,7 +9,7 @@ default = [] io_uring = [] [dependencies] -io-uring = { git = "https://github.com/tokio-rs/io-uring.git", branch = "0.4" } +io-uring = ">=0.4.0" libc = "0.2.74" log = "0.4.11" serde = ">=1.0.27" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 7d884cc0f..0e22fb2bc 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -17,7 +17,7 @@ block_util = { path = "../block_util" } byteorder = "1.3.4" devices = { path = "../devices" } epoll = ">=4.0.1" -io-uring = { git = "https://github.com/tokio-rs/io-uring.git", branch = "0.4" } +io-uring = ">=0.4.0" libc = "0.2.74" log = "0.4.11" net_gen = { path = "../net_gen" }