From db2159b5638eb4ccf5e1a34828311cf8b6da310d Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Fri, 6 Aug 2021 15:53:13 +0100 Subject: [PATCH] build: Switch to vhost 0.1.0 release Signed-off-by: Rob Bradford --- Cargo.lock | 3 ++- vhost_user_backend/Cargo.toml | 2 +- vhost_user_block/Cargo.toml | 2 +- vhost_user_net/Cargo.toml | 2 +- virtio-devices/Cargo.toml | 4 ++-- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4e29f3e92..0b0004887 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1123,7 +1123,8 @@ dependencies = [ [[package]] name = "vhost" version = "0.1.0" -source = "git+https://github.com/rust-vmm/vhost?branch=master#56ad2ae4dd20405dd2cffc1c692646269a6604a7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a6b90237e10f1a61b35fba73885c3567e1a5a8c40d44daae335f7710210a7dc" dependencies = [ "bitflags", "libc", diff --git a/vhost_user_backend/Cargo.toml b/vhost_user_backend/Cargo.toml index 45cf2282f..80ec894e8 100644 --- a/vhost_user_backend/Cargo.toml +++ b/vhost_user_backend/Cargo.toml @@ -15,4 +15,4 @@ virtio-bindings = "0.1.0" vm-memory = { version = "0.6.0", features = ["backend-bitmap"] } vm-virtio = { path = "../vm-virtio" } vmm-sys-util = "0.8.0" -vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] } +vhost = { version = "0.1.0" , features = ["vhost-user-slave"] } diff --git a/vhost_user_block/Cargo.toml b/vhost_user_block/Cargo.toml index eeaa2983e..998aa42cb 100644 --- a/vhost_user_block/Cargo.toml +++ b/vhost_user_block/Cargo.toml @@ -14,7 +14,7 @@ log = "0.4.14" option_parser = { path = "../option_parser" } qcow = { path = "../qcow" } vhost_user_backend = { path = "../vhost_user_backend" } -vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] } +vhost = { version = "0.1.0" , features = ["vhost-user-slave"] } virtio-bindings = "0.1.0" vm-memory = "0.6.0" vmm-sys-util = "0.8.0" diff --git a/vhost_user_net/Cargo.toml b/vhost_user_net/Cargo.toml index caf0b6536..7b208599e 100644 --- a/vhost_user_net/Cargo.toml +++ b/vhost_user_net/Cargo.toml @@ -13,7 +13,7 @@ log = "0.4.14" net_util = { path = "../net_util" } option_parser = { path = "../option_parser" } vhost_user_backend = { path = "../vhost_user_backend" } -vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-slave"] } +vhost = { version = "0.1.0" , features = ["vhost-user-slave"] } virtio-bindings = "0.1.0" vm-memory = "0.6.0" vmm-sys-util = "0.8.0" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 497f5f3ee..01fbf6c75 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -29,8 +29,8 @@ serde_derive = "1.0.127" serde_json = "1.0.66" versionize = "0.1.6" versionize_derive = "0.1.4" -vhost = { git = "https://github.com/rust-vmm/vhost", branch = "master", package = "vhost", features = ["vhost-user-master", "vhost-user-slave", "vhost-kern"] } -virtio-bindings = { version = "0.1.0", features = ["virtio-v5_0_0"] } +vhost = { version = "0.1.0" , features = ["vhost-user-master", "vhost-user-slave", "vhost-kern"] } +virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"]} vm-allocator = { path = "../vm-allocator" } vm-device = { path = "../vm-device" } vm-memory = { version = "0.6.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }