diff --git a/Cargo.lock b/Cargo.lock index e0f77ed4c..fec38e151 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1458,7 +1458,6 @@ dependencies = [ name = "test-support" version = "0.1.0" dependencies = [ - "archive", "hamcrest2", "serde_json", "thiserror", diff --git a/Cargo.toml b/Cargo.toml index 009f59445..67891753d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,9 +29,7 @@ log = { version = "0.4", features = ["std"] } node-semver = "2" clap = { version = "4.4.18", features = ["color", "derive", "wrap_help"] } clap_complete = "4.4.9" -cfg-if = "1.0" mockito = { version = "0.31.1", optional = true } -test-support = { path = "crates/test-support" } textwrap = "0.16.0" which = "6.0.0" dirs = "5.0.1" @@ -45,5 +43,7 @@ hamcrest2 = "0.3.0" envoy = "0.1.3" ci_info = "0.14.14" headers = "0.4" +cfg-if = "1.0" +test-support = { path = "crates/test-support" } [workspace] diff --git a/crates/test-support/Cargo.toml b/crates/test-support/Cargo.toml index ab3ff81c0..fbf34c113 100644 --- a/crates/test-support/Cargo.toml +++ b/crates/test-support/Cargo.toml @@ -6,6 +6,5 @@ edition = "2018" [dependencies] hamcrest2 = "0.3.0" -archive = { path = "../archive" } serde_json = { version = "1.0.113" } thiserror = "1.0.56"