diff --git a/Cargo.lock b/Cargo.lock index 7245dc439f..ba1f941160 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1244,6 +1244,7 @@ dependencies = [ "tracing-utils", "url", "utils", + "vm_monitor", "workspace_hack", "zstd", ] diff --git a/compute_tools/Cargo.toml b/compute_tools/Cargo.toml index b5e6c41bb7..b3e76e8e0b 100644 --- a/compute_tools/Cargo.toml +++ b/compute_tools/Cargo.toml @@ -39,7 +39,9 @@ utils.workspace = true workspace_hack.workspace = true toml_edit.workspace = true remote_storage = { version = "0.1", path = "../libs/remote_storage/" } -# vm_monitor = { version = "0.1", path = "../libs/vm_monitor/" } zstd = "0.13" bytes = "1.0" rust-ini = "0.20.0" + +[target.'cfg(target_os = "linux")'.dependencies] +vm_monitor = { version = "0.1", path = "../libs/vm_monitor/" }