summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Mueller <muellerd@meta.com>2023-12-11 10:16:37 -0800
committerFacebook GitHub Bot <facebook-github-bot@users.noreply.github.com>2023-12-11 10:16:37 -0800
commit2a93635bcb797ad3ab45263bf4f9525de442cfb4 (patch)
tree9ab2e6bb8b86bd48025eb63469f0531cde772c1b
parent03879ad81d10c3bf4848090e1e9e4b001b15f7ea (diff)
Update `libbpf-rs` and `libbpf-cargo` to `0.22.0`
Summary: Update both `libbpf-rs` and `libbpf-cargo` to version `0.22.0`. The skeleton generation code introduced separate `*_mut()` variants for a few accessors, so we have to adjust a few clients. Reviewed By: zertosh Differential Revision: D51856567 fbshipit-source-id: 92ab0759f16f472ce02854272875983498deb926
-rw-r--r--below/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/below/Cargo.toml b/below/Cargo.toml
index dde9360e..0051355a 100644
--- a/below/Cargo.toml
+++ b/below/Cargo.toml
@@ -30,7 +30,7 @@ cursive = { version = "0.20.0", features = ["crossterm-backend"], default-featur
dump = { package = "below-dump", version = "0.7.1", path = "dump" }
futures = { version = "0.3.28", features = ["async-await", "compat"] }
indicatif = { version = "0.17.6", features = ["improved_unicode", "rayon", "tokio"] }
-libbpf-rs = "0.21.2"
+libbpf-rs = "0.22"
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.21.2"
+libbpf-cargo = "0.22"
[features]
enable_backtrace = []