From abb5fb127b16ee618300f06cf4f12ac8c4dfd9d8 Mon Sep 17 00:00:00 2001 From: Ruoqing He Date: Wed, 9 Apr 2025 01:29:46 +0000 Subject: [PATCH] runtime-rs: Extend workspace to cover all crates Only `shim` and `shim-ctl` are incorporated in `runtime-rs`'s workspace, let's extend it to cover all crates in `runtime-rs/crates`. Signed-off-by: Ruoqing He --- src/runtime-rs/Cargo.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/runtime-rs/Cargo.toml b/src/runtime-rs/Cargo.toml index bbc401f645..b5df0d4e8f 100644 --- a/src/runtime-rs/Cargo.toml +++ b/src/runtime-rs/Cargo.toml @@ -1,6 +1,13 @@ [workspace] members = [ + "crates/agent", + "crates/hypervisor", + "crates/persist", + "crates/resource", + "crates/runtimes", + "crates/service", "crates/shim", "crates/shim-ctl", -] + "tests/utils", +]