Update vhost-user-backend

Update vhost-user-backend to avoid vhost version conflicts.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
This commit is contained in:
Viresh Kumar 2022-03-28 10:05:01 +05:30
parent d19669dc7c
commit 0542190d73
3 changed files with 7 additions and 19 deletions

22
Cargo.lock generated
View File

@ -392,18 +392,6 @@ version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "vhost"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b56bf8f178fc500fe14505fca8b00dec76fc38f2304f461c8d9d7547982311d"
dependencies = [
"bitflags",
"libc",
"vm-memory",
"vmm-sys-util",
]
[[package]]
name = "vhost"
version = "0.4.0"
@ -425,7 +413,7 @@ dependencies = [
"libc",
"log",
"thiserror",
"vhost 0.4.0",
"vhost",
"vhost-user-backend",
"virtio-bindings",
"virtio-queue",
@ -445,7 +433,7 @@ dependencies = [
"rand",
"tempfile",
"thiserror",
"vhost 0.4.0",
"vhost",
"vhost-user-backend",
"virtio-bindings",
"virtio-queue",
@ -455,13 +443,13 @@ dependencies = [
[[package]]
name = "vhost-user-backend"
version = "0.2.0"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bf4c8d6fc1560ac01051bd09b744887665b25adeb390bb7de6bbfb4d2ad8b12"
checksum = "1490f2028d4f119b2292efe218b5f8cfc6471f039b53b6a6eb5d9513e964facc"
dependencies = [
"libc",
"log",
"vhost 0.3.0",
"vhost",
"virtio-bindings",
"virtio-queue",
"vm-memory",

View File

@ -18,7 +18,7 @@ libc = ">=0.2.95"
log = ">=0.4.6"
thiserror = "1.0"
vhost = { version = "0.4", features = ["vhost-user-slave"] }
vhost-user-backend = "0.2"
vhost-user-backend = "0.3"
virtio-bindings = ">=0.1"
virtio-queue = "0.2"
vm-memory = "0.7"

View File

@ -19,7 +19,7 @@ rand = ">=0.8.5"
tempfile = "3.2.0"
thiserror = "1.0"
vhost = { version = "0.4", features = ["vhost-user-slave"] }
vhost-user-backend = "0.2"
vhost-user-backend = "0.3"
virtio-bindings = ">=0.1"
virtio-queue = "0.2"
vm-memory = ">=0.7"