This is required in Rust 1.80 at least.
@@ -1,6 +1,6 @@
[package]
name = "aya-build"
-version = "0.1.1"
+version = "0.1.2"
description = "Build-time support for aya projects"
authors.workspace = true
license.workspace = true
@@ -136,6 +136,7 @@ pub fn build_ebpf(packages: impl IntoIterator<Item = Package>) -> Result<()> {
match stderr.join().map_err(std::panic::resume_unwind) {
Ok(()) => {}
+ Err(err) => match err {},
}
for (name, binary) in executables {