From da3f09e28bcab3fa8fc677c1622fd3c36a08b253 Mon Sep 17 00:00:00 2001 From: Dave Tucker Date: Thu, 27 Mar 2025 16:14:35 +0000 Subject: [PATCH] chore: move network-types to workspace dep Signed-off-by: Dave Tucker --- Cargo.toml | 1 + test/integration-ebpf/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b21d6f34..f765597f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -80,6 +80,7 @@ indoc = { version = "2.0", 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 } +network-types = { version = "0.0.7", default-features = false } nix = { version = "0.29.0", default-features = false } num_enum = { version = "0.7", default-features = false } object = { version = "0.36", default-features = false } diff --git a/test/integration-ebpf/Cargo.toml b/test/integration-ebpf/Cargo.toml index bb4c950f..ed16b476 100644 --- a/test/integration-ebpf/Cargo.toml +++ b/test/integration-ebpf/Cargo.toml @@ -17,7 +17,7 @@ workspace = true aya-ebpf = { path = "../../ebpf/aya-ebpf" } aya-log-ebpf = { path = "../../ebpf/aya-log-ebpf" } integration-common = { path = "../integration-common" } -network-types = "0.0.7" +network-types = { workspace = true } [build-dependencies] which = { workspace = true }