From b445f0b6d736e1e047203c95132bafe51f4d1c3b Mon Sep 17 00:00:00 2001 From: Ludvig Liljenberg Date: Fri, 14 Mar 2025 13:13:52 -0700 Subject: [PATCH 1/2] Clean up workspace cargo.toml Signed-off-by: Ludvig Liljenberg --- Cargo.toml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3fa824ad8..4d8c292f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,17 +6,10 @@ default-members = [ "src/hyperlight_testing", ] members = [ - "src/hyperlight_common", - "src/hyperlight_guest", - "src/hyperlight_host", "src/hyperlight_guest_capi", - "src/hyperlight_testing", "fuzz", ] -# Because hyperlight-guest has custom linker flags, -# we exclude it from the default-members list -# to avoid cargo test failing on it. -# Same for the simpleguest and dummyguest tests below. +# Guests have custom linker flags, so we need to exclude them from the workspace exclude = [ "src/tests/rust_guests/callbackguest", "src/tests/rust_guests/dummyguest", @@ -33,7 +26,6 @@ repository = "https://github.com/hyperlight-dev/hyperlight" readme = "README.md" [workspace.dependencies] - hyperlight-common = { path = "src/hyperlight_common", version = "0.2.0", default-features = false } hyperlight-host = { path = "src/hyperlight_host", version = "0.2.0", default-features = false } hyperlight-guest = { path = "src/hyperlight_guest", version = "0.2.0", default-features = false } From d75c384fa2f4f44db9ea915d3c94a051b488c169 Mon Sep 17 00:00:00 2001 From: Ludvig Liljenberg Date: Fri, 14 Mar 2025 13:06:26 -0700 Subject: [PATCH 2/2] Remove unused dependencies envy Signed-off-by: Ludvig Liljenberg --- src/hyperlight_host/Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hyperlight_host/Cargo.toml b/src/hyperlight_host/Cargo.toml index 2d6530fb2..6778d420b 100644 --- a/src/hyperlight_host/Cargo.toml +++ b/src/hyperlight_host/Cargo.toml @@ -84,7 +84,6 @@ mshv-ioctls3 = { package="mshv-ioctls", version = "=0.3.2", optional = true} [dev-dependencies] uuid = { version = "1.15.1", features = ["v4"] } signal-hook-registry = "1.4.1" -envy = { version = "0.4.2" } serde = "1.0" proptest = "1.6.0" tempfile = "3.18.0"