From 758a4f9d1ee4cfc662201cbfaf6e4a932b4d89c5 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Thu, 10 Oct 2024 16:36:05 -0400 Subject: [PATCH] Remove workspace members from workspace.dependencies Doesn't make much sense to have them here. --- Cargo.toml | 2 -- test/integration-test/Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f20636269..7a5d41c45 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,7 +71,6 @@ epoll = { version = "4.3.3", default-features = false } futures = { version = "0.3.28", default-features = false } hashbrown = { version = "0.15.0", default-features = false } indoc = { version = "2.0", default-features = false } -integration-ebpf = { path = "test/integration-ebpf", default-features = false } libc = { version = "0.2.105", default-features = false } log = { version = "0.4", default-features = false } netns-rs = { version = "0.1", default-features = false } @@ -97,7 +96,6 @@ thiserror = { version = "1", default-features = false } tokio = { version = "1.24.0", default-features = false } which = { version = "6.0.0", default-features = false } xdpilone = { version = "1.0.5", default-features = false } -xtask = { path = "xtask", default-features = false } [profile.dev] panic = "abort" diff --git a/test/integration-test/Cargo.toml b/test/integration-test/Cargo.toml index 89fb0647a..815f650d4 100644 --- a/test/integration-test/Cargo.toml +++ b/test/integration-test/Cargo.toml @@ -43,4 +43,4 @@ cargo_metadata = { workspace = true } # workflows with stable cargo; stable cargo outright refuses to load manifests that use unstable # features. integration-ebpf = { path = "../integration-ebpf" } -xtask = { workspace = true } +xtask = { path = "../../xtask" }