From 54a05cbc6ee8e14533dfd2426733490535fb0a66 Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Fri, 23 Aug 2024 13:08:50 -0700 Subject: [PATCH] Update `libbpf-rs` & `libbpf-cargo` to 0.24.2 Summary: Update libbpf-rs and libbpf-cargo to 0.24.3. This version includes the means for suppressing potential clippy warnings when generating a skeleton based on a BPF object file that does not actually contain any maps. Reviewed By: capickett Differential Revision: D61725645 fbshipit-source-id: 24477e2d010b7a6e2b9d131e542d3bb62e67dc1c --- below/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/below/Cargo.toml b/below/Cargo.toml index cbcb6e2d..4d827c3d 100644 --- a/below/Cargo.toml +++ b/below/Cargo.toml @@ -29,7 +29,7 @@ config = { package = "below-config", version = "0.8.1", path = "config" } cursive = { version = "0.20.0", features = ["crossterm-backend"], default-features = false } dump = { package = "below-dump", version = "0.8.1", path = "dump" } indicatif = { version = "0.17.6", features = ["improved_unicode", "rayon", "tokio"] } -libbpf-rs = { version = "0.24.2", default-features = false } +libbpf-rs = { version = "0.24.3", default-features = false } libc = "0.2.139" model = { package = "below-model", version = "0.8.1", path = "model" } once_cell = "1.12" @@ -52,7 +52,7 @@ maplit = "1.0" portpicker = "0.1.1" [build-dependencies] -libbpf-cargo = { version = "0.24.2", default-features = false } +libbpf-cargo = { version = "0.24.3", default-features = false } [features] default = ["libbpf-cargo/default", "libbpf-rs/default"]