vhost-device: Update vhost-user-backend to 0.2.0

The versions of virtio-queue conflicts as both vhost-device and
vhost-user-backend are trying to fetch different versions of it. Fix it
by updating vhost-user-backend as well.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
This commit is contained in:
Viresh Kumar 2022-03-08 10:33:16 +05:30
parent b2092fb501
commit f7f0361d76
3 changed files with 7 additions and 18 deletions

21
Cargo.lock generated
View File

@ -416,7 +416,7 @@ dependencies = [
"vhost",
"vhost-user-backend",
"virtio-bindings",
"virtio-queue 0.2.0",
"virtio-queue",
"vm-memory",
"vmm-sys-util",
]
@ -436,22 +436,22 @@ dependencies = [
"vhost",
"vhost-user-backend",
"virtio-bindings",
"virtio-queue 0.2.0",
"virtio-queue",
"vm-memory",
"vmm-sys-util",
]
[[package]]
name = "vhost-user-backend"
version = "0.1.0"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8db00e93514caa8987bb8b536fe962c9b66b4068583abc4c531eb97988477cd"
checksum = "6bf4c8d6fc1560ac01051bd09b744887665b25adeb390bb7de6bbfb4d2ad8b12"
dependencies = [
"libc",
"log",
"vhost",
"virtio-bindings",
"virtio-queue 0.1.0",
"virtio-queue",
"vm-memory",
"vmm-sys-util",
]
@ -462,17 +462,6 @@ version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ff512178285488516ed85f15b5d0113a7cdb89e9e8a760b269ae4f02b84bd6b"
[[package]]
name = "virtio-queue"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f90da9e627f6aaf667cc7b6548a28be332d3e1f058f4ceeb46ab6bcee5c4b74d"
dependencies = [
"log",
"vm-memory",
"vmm-sys-util",
]
[[package]]
name = "virtio-queue"
version = "0.2.0"

View File

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