build: Move to released versions of vhost and vhost-user-backend crates

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2022-11-30 10:55:11 +00:00
parent fc43a50f34
commit 30a7a8033e
6 changed files with 11 additions and 11 deletions

10
Cargo.lock generated
View File

@ -1406,8 +1406,9 @@ dependencies = [
[[package]]
name = "vhost"
version = "0.5.0"
source = "git+https://github.com/rust-vmm/vhost?branch=main#240fc2966cca9ec181cacbec2b7e589eda5aadee"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9b791c5b0717a0558888a4cf7240cea836f39a99cb342e12ce633dcaa078072"
dependencies = [
"bitflags",
"libc",
@ -1417,8 +1418,9 @@ dependencies = [
[[package]]
name = "vhost-user-backend"
version = "0.7.0"
source = "git+https://github.com/rust-vmm/vhost?branch=main#240fc2966cca9ec181cacbec2b7e589eda5aadee"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f237b91db4ac339d639fb43398b52d785fa51e3c7760ac9425148863c1f4303"
dependencies = [
"libc",
"log",

View File

@ -50,7 +50,6 @@ clap = { version = "4.0.27", features = ["cargo"] }
[patch.crates-io]
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.6.0-tdx" }
versionize_derive = { git = "https://github.com/cloud-hypervisor/versionize_derive", branch = "ch" }
vhost = { git = "https://github.com/rust-vmm/vhost", branch = "main" }
[dev-dependencies]
dirs = "4.0.0"

View File

@ -33,7 +33,6 @@ path = ".."
[patch.crates-io]
kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.6.0-tdx" }
versionize_derive = { git = "https://github.com/cloud-hypervisor/versionize_derive", branch = "ch" }
vhost = { git = "https://github.com/rust-vmm/vhost", branch = "main" }
# Prevent this from interfering with workspaces
[workspace]

View File

@ -13,8 +13,8 @@ libc = "0.2.137"
log = "0.4.17"
option_parser = { path = "../option_parser" }
qcow = { path = "../qcow" }
vhost = { version = "0.5.0", features = ["vhost-user-slave"] }
vhost-user-backend = { git = "https://github.com/rust-vmm/vhost", branch = "main" }
vhost = { version = "0.6.0", features = ["vhost-user-slave"] }
vhost-user-backend = "0.8.0"
virtio-bindings = "0.1.0"
virtio-queue = "0.7.0"
vm-memory = "0.10.0"

View File

@ -12,8 +12,8 @@ libc = "0.2.137"
log = "0.4.17"
net_util = { path = "../net_util" }
option_parser = { path = "../option_parser" }
vhost = { version = "0.5.0", features = ["vhost-user-slave"] }
vhost-user-backend = { git = "https://github.com/rust-vmm/vhost", branch = "main" }
vhost = { version = "0.6.0", features = ["vhost-user-slave"] }
vhost-user-backend = "0.8.0"
virtio-bindings = "0.1.0"
vm-memory = "0.10.0"
vmm-sys-util = "0.11.0"

View File

@ -28,7 +28,7 @@ serial_buffer = { path = "../serial_buffer" }
thiserror = "1.0.37"
versionize = "0.1.6"
versionize_derive = "0.1.4"
vhost = { version = "0.5.0", features = ["vhost-user-master", "vhost-user-slave", "vhost-kern", "vhost-vdpa"] }
vhost = { version = "0.6.0", features = ["vhost-user-master", "vhost-user-slave", "vhost-kern", "vhost-vdpa"] }
virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] }
virtio-queue = "0.7.0"
vm-allocator = { path = "../vm-allocator" }