From a6f4739b5b138e718632758cad266ee3cb7b1b65 Mon Sep 17 00:00:00 2001 From: Alessandro Decina Date: Sat, 6 Apr 2024 22:20:58 +1100 Subject: [PATCH] chore: aya-ebpf-macros: uncomment aya-ebpf dev-dep This wasn't meant to be committed, cargo-smart-release. Commenting is needed to fix the cyclic dep aya-ebpf-macros -> aya-ebpf -> aya-ebpf-macros. See https://github.com/rust-lang/cargo/issues/4242#issuecomment-413203081 --- aya-ebpf-macros/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aya-ebpf-macros/Cargo.toml b/aya-ebpf-macros/Cargo.toml index 06f0e556..b61ff477 100644 --- a/aya-ebpf-macros/Cargo.toml +++ b/aya-ebpf-macros/Cargo.toml @@ -18,4 +18,4 @@ quote = { workspace = true } syn = { workspace = true, default-features = true, features = ["full"] } [dev-dependencies] -#aya-ebpf = { path = "../ebpf/aya-ebpf", version = "^0.1.0", default-features = false } +aya-ebpf = { path = "../ebpf/aya-ebpf", version = "^0.1.0", default-features = false }