From f0af5f7fc22a345e050123dc048c0639965fe652 Mon Sep 17 00:00:00 2001 From: Viresh Kumar Date: Fri, 3 Sep 2021 13:10:58 +0530 Subject: [PATCH] backend: Set rev for virtio-queue The builds are failing since the remote branch's name is changed to main from master. Fix it by adding the rev for virtio-queue. Signed-off-by: Viresh Kumar --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ffe55c7..e5f2b66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ libc = ">=0.2.39" log = ">=0.4.6" vhost = { version = "0.1", features = ["vhost-user-slave"] } virtio-bindings = "0.1" -virtio-queue = { git = "https://github.com/rust-vmm/vm-virtio" } +virtio-queue = { git = "https://github.com/rust-vmm/vm-virtio", rev = "6013dd9" } vm-memory = {version = "0.6", features = ["backend-mmap", "backend-atomic"]} vmm-sys-util = "0.8"