Skip to content

Commit 3d8cb08

Browse files
tamirdvadorovsky
authored andcommitted
aya-build: add explicit irrefutable pattern
This is required in Rust 1.80 at least.
1 parent 015c0df commit 3d8cb08

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

aya-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aya-build"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Build-time support for aya projects"
55
authors.workspace = true
66
license.workspace = true

aya-build/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ pub fn build_ebpf(packages: impl IntoIterator<Item = Package>) -> Result<()> {
136136

137137
match stderr.join().map_err(std::panic::resume_unwind) {
138138
Ok(()) => {}
139+
Err(err) => match err {},
139140
}
140141

141142
for (name, binary) in executables {

0 commit comments

Comments
 (0)