diff --git a/Cargo.lock b/Cargo.lock index 1d515286f..f55651454 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 7304f4d9d..6c5dc407d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index a96d40336..9b6142a08 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -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] diff --git a/vhost_user_block/Cargo.toml b/vhost_user_block/Cargo.toml index e21d768bc..c020376ff 100644 --- a/vhost_user_block/Cargo.toml +++ b/vhost_user_block/Cargo.toml @@ -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" diff --git a/vhost_user_net/Cargo.toml b/vhost_user_net/Cargo.toml index f42335a07..9bd0cab92 100644 --- a/vhost_user_net/Cargo.toml +++ b/vhost_user_net/Cargo.toml @@ -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" diff --git a/virtio-devices/Cargo.toml b/virtio-devices/Cargo.toml index 9afab78e8..ee3e5d65b 100644 --- a/virtio-devices/Cargo.toml +++ b/virtio-devices/Cargo.toml @@ -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" }