build: Use single version of vhost-user-backend

Using multiple different versions breaks vendoring.

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford
2022-03-03 15:45:05 +00:00
parent d6895188b1
commit 446d2c89d9
2 changed files with 3 additions and 18 deletions

View File

@@ -14,7 +14,7 @@ log = "0.4.14"
option_parser = { path = "../option_parser" }
qcow = { path = "../qcow" }
vhost = { version = "0.3.0", features = ["vhost-user-slave"] }
vhost-user-backend = "0.1.0"
vhost-user-backend = { git = "https://github.com/rust-vmm/vhost-user-backend", branch = "main" }
virtio-bindings = "0.1.0"
vm-memory = "0.7.0"
vmm-sys-util = "0.9.0"