aya-build: add explicit irrefutable pattern

This is required in Rust 1.80 at least.
reviewable/pr1105/r3
Tamir Duberstein 5 months ago
parent 7cd2f5232e
commit 7ba03cf882
No known key found for this signature in database

@ -1,6 +1,6 @@
[package] [package]
name = "aya-build" name = "aya-build"
version = "0.1.1" version = "0.1.2"
description = "Build-time support for aya projects" description = "Build-time support for aya projects"
authors.workspace = true authors.workspace = true
license.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) { match stderr.join().map_err(std::panic::resume_unwind) {
Ok(()) => {} Ok(()) => {}
Err(err) => match err {},
} }
for (name, binary) in executables { for (name, binary) in executables {

Loading…
Cancel
Save