From 734e8d102622c6b79419171a6a45dba63dabff74 Mon Sep 17 00:00:00 2001 From: Conrad Ludgate Date: Thu, 9 May 2024 13:35:27 +0100 Subject: [PATCH] add back vm_monitor --- Cargo.lock | 1 + compute_tools/Cargo.toml | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) 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/" }