aya-build: add explicit irrefutable pattern

This is required in Rust 1.80 at least.
reviewable/pr1106/r1
Tamir Duberstein 2 months ago committed by Michal Rostecki
parent 015c0df0f4
commit 3d8cb08b7f

@ -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 {

Loading…
Cancel
Save