From db916612e8936e6278755652ced6187622f4aae7 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Tue, 4 Nov 2025 07:50:26 -0500 Subject: [PATCH] Populate new fields in `aya_build::Package` --- {{project-name}}/build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/{{project-name}}/build.rs b/{{project-name}}/build.rs index 6f74361..86e6745 100644 --- a/{{project-name}}/build.rs +++ b/{{project-name}}/build.rs @@ -21,6 +21,7 @@ fn main() -> anyhow::Result<()> { .parent() .ok_or_else(|| anyhow!("no parent for {manifest_path}"))? .as_str(), + ..Default::default() }; aya_build::build_ebpf([ebpf_package], Toolchain::default()) }