Browse Source

aya-build: add explicit irrefutable pattern

This is required in Rust 1.80 at least.
Tamir Duberstein 4 months ago
parent
commit
3d8cb08b7f
2 changed files with 2 additions and 1 deletions
  1. 1 1
      aya-build/Cargo.toml
  2. 1 0
      aya-build/src/lib.rs

+ 1 - 1
aya-build/Cargo.toml

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

+ 1 - 0
aya-build/src/lib.rs

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