From f4ee3226c0c23c1e431359114f142999fe814d8f Mon Sep 17 00:00:00 2001 From: Sergio Lopez Date: Thu, 23 Sep 2021 12:24:44 +0200 Subject: [PATCH] Cargo: update vhost dependency to v0.2.0 In addition to bringing the features from the new vhost crate, this fixes the breakage caused by rust-vmm/vmm-sys-util#135 Signed-off-by: Sergio Lopez --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e5f2b66..450f1b7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ license = "Apache-2.0" epoll = ">=4.0.1" libc = ">=0.2.39" log = ">=0.4.6" -vhost = { version = "0.1", features = ["vhost-user-slave"] } +vhost = { version = "0.2", features = ["vhost-user-slave"] } virtio-bindings = "0.1" virtio-queue = { git = "https://github.com/rust-vmm/vm-virtio", rev = "6013dd9" } vm-memory = {version = "0.6", features = ["backend-mmap", "backend-atomic"]}