diff --git a/Cargo.lock b/Cargo.lock index 9c9996797..8d34b8e52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1276,8 +1276,7 @@ dependencies = [ [[package]] name = "vhost" version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79243657c76e5c90dcbf60187c842614f6dfc7123972c55bb3bcc446792aca93" +source = "git+https://github.com/rust-vmm/vhost?branch=main#f87156b77662af63b9fc9f116a213dd69e16007b" dependencies = [ "bitflags", "libc", diff --git a/Cargo.toml b/Cargo.toml index f85e5e1b2..80a01252b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,6 +44,7 @@ clap = { version = "4.0.14", features = ["cargo"] } kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0-tdx" } kvm-ioctls = { git = "https://github.com/rust-vmm/kvm-ioctls", branch = "main" } 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.lock b/fuzz/Cargo.lock index 1fb8a5f9b..5f73b1f68 100644 --- a/fuzz/Cargo.lock +++ b/fuzz/Cargo.lock @@ -884,8 +884,7 @@ dependencies = [ [[package]] name = "vhost" version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79243657c76e5c90dcbf60187c842614f6dfc7123972c55bb3bcc446792aca93" +source = "git+https://github.com/rust-vmm/vhost?branch=main#f87156b77662af63b9fc9f116a213dd69e16007b" dependencies = [ "bitflags", "libc", diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 39da4a092..4211be46c 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -34,6 +34,7 @@ path = ".." kvm-bindings = { git = "https://github.com/cloud-hypervisor/kvm-bindings", branch = "ch-v0.5.0-tdx" } kvm-ioctls = { git = "https://github.com/rust-vmm/kvm-ioctls", branch = "main" } 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]