Skip to content

Commit

Permalink
aya-build: add explicit irrefutable pattern
Browse files Browse the repository at this point in the history
This is required in Rust 1.80 at least.
  • Loading branch information
tamird authored and vadorovsky committed Dec 1, 2024
1 parent 015c0df commit 3d8cb08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion aya-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions aya-build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 3d8cb08

Please sign in to comment.