From 972e5e636a96fcbeb71c66ccc29557d16a0cf545 Mon Sep 17 00:00:00 2001 From: William Findlay Date: Thu, 28 Oct 2021 10:26:15 -0400 Subject: [PATCH] aya-bpf-macros: fix tests Doctests were failing due to a dependency on the aya-bpf crate. --- bpf/aya-bpf-macros/Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bpf/aya-bpf-macros/Cargo.toml b/bpf/aya-bpf-macros/Cargo.toml index 68000809..9c43f7bd 100644 --- a/bpf/aya-bpf-macros/Cargo.toml +++ b/bpf/aya-bpf-macros/Cargo.toml @@ -10,4 +10,7 @@ proc-macro = true [dependencies] proc-macro2 = "1.0" quote = "1.0" -syn = {version = "1.0", features = ["full"]} \ No newline at end of file +syn = {version = "1.0", features = ["full"]} + +[dev-dependencies] +aya-bpf = { path = "../aya-bpf" }