build, main: add vm-migration dependency

The cloud-hypervisor binary prints vm-migration protocol constants
directly, so it needs its own dependency on the vm-migration crate
instead of relying on vmm's transitive dependency.

On-behalf-of: SAP leander.kohler@sap.com
Signed-off-by: Leander Kohler <leander.kohler@cyberus-technology.de>
This commit is contained in:
Leander Kohler
2026-06-02 13:53:02 +02:00
committed by Rob Bradford
parent 51bd9d24f3
commit a098920e19
2 changed files with 2 additions and 0 deletions

1
Cargo.lock generated
View File

@@ -475,6 +475,7 @@ dependencies = [
"test_infra",
"thiserror",
"tracer",
"vm-migration",
"vmm",
"vmm-sys-util",
"wait-timeout",

View File

@@ -26,6 +26,7 @@ serde_json = { workspace = true }
signal-hook = { workspace = true }
thiserror = { workspace = true }
tracer = { path = "../tracer" }
vm-migration = { path = "../vm-migration" }
vmm = { path = "../vmm" }
vmm-sys-util = { workspace = true }
zbus = { version = "5.15.0", optional = true }