summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Mueller <muellerd@meta.com>2024-02-02 06:10:48 -0800
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>2024-02-02 06:10:48 -0800
commit0f677792c4da4ad4d11e0a0c5ecda7a19ad63e7a (patch)
treeb5d1fe40bd566725ae425f7555f30bbc93507836
parenta6d5f017fc1c6b75b8820525a2a8b920cd6967c1 (diff)
Update libbpf-rs snapshot
Summary: Pull in the most recent snapshot of libbpf-rs and, more importantly, keep libbpf-rs and libbpf-cargo in sync. In this snapshot libbpf-cargo removed the novendor feature in favor of having a default feature that can be disabled. Reviewed By: dtolnay Differential Revision: D53323354 fbshipit-source-id: 5165e1476017ad321ee1fe107d8550aa3cadaa71
-rw-r--r--below/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/below/Cargo.toml b/below/Cargo.toml
index b0eff5fb..fb6a55ce 100644
--- a/below/Cargo.toml
+++ b/below/Cargo.toml
@@ -29,7 +29,7 @@ config = { package = "below-config", version = "0.7.1", path = "config" }
cursive = { version = "0.20.0", features = ["crossterm-backend"], default-features = false }
dump = { package = "below-dump", version = "0.7.1", path = "dump" }
indicatif = { version = "0.17.6", features = ["improved_unicode", "rayon", "tokio"] }
-libbpf-rs = { version = "0.22", git = "https://github.com/libbpf/libbpf-rs.git", rev = "291c6a4e0368c2f472078a8b8443fae427168179", default-features = false }
+libbpf-rs = { version = "0.22", git = "https://github.com/libbpf/libbpf-rs.git", rev = "56dca575089ab2144f51b7949a9ee4c9fc226a47", default-features = false }
libc = "0.2.139"
model = { package = "below-model", version = "0.7.1", path = "model" }
once_cell = "1.12"
@@ -52,7 +52,7 @@ maplit = "1.0"
portpicker = "0.1.1"
[build-dependencies]
-libbpf-cargo = "0.22"
+libbpf-cargo = { version = "0.22", git = "https://github.com/libbpf/libbpf-rs.git", rev = "56dca575089ab2144f51b7949a9ee4c9fc226a47", default-features = false }
[features]
enable_backtrace = []