From 8b993151ad8068803cbf603745e99cc822cb72f4 Mon Sep 17 00:00:00 2001 From: Simon Davies Date: Mon, 9 Jun 2025 09:57:09 +0100 Subject: [PATCH] Remove version number from hyperlight-testing crate dependency Signed-off-by: Simon Davies --- Cargo.toml | 2 +- src/hyperlight_testing/Cargo.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 48fa66efb..493aa1c04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ hyperlight-common = { path = "src/hyperlight_common", version = "0.6.0", default hyperlight-host = { path = "src/hyperlight_host", version = "0.6.0", default-features = false } hyperlight-guest = { path = "src/hyperlight_guest", version = "0.6.0", default-features = false } hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.6.0", default-features = false } -hyperlight-testing = { path = "src/hyperlight_testing", version = "0.6.0", default-features = false } +hyperlight-testing = { path = "src/hyperlight_testing", default-features = false } hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.6.0", default-features = false } hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.6.0", default-features = false } diff --git a/src/hyperlight_testing/Cargo.toml b/src/hyperlight_testing/Cargo.toml index 4abe98b5f..fca693d16 100644 --- a/src/hyperlight_testing/Cargo.toml +++ b/src/hyperlight_testing/Cargo.toml @@ -1,6 +1,5 @@ [package] name = "hyperlight-testing" -version.workspace = true edition = "2021" [dependencies] @@ -18,4 +17,4 @@ serde_json = "1.0" bench = false # see https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options # reduce noise in test output test = false -doctest = false \ No newline at end of file +doctest = false