From 314813839672d3c2ad3c6033ce5b5c7062e0fe6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2024 10:18:07 -0700 Subject: [PATCH] build(deps): update bindgen requirement from 0.69 to 0.70 in /tools/xdp (#2301) Updates the requirements on [bindgen](https://github.com/rust-lang/rust-bindgen) to permit the latest version. - [Release notes](https://github.com/rust-lang/rust-bindgen/releases) - [Changelog](https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/rust-bindgen/compare/v0.69.0...v0.70.0) --- updated-dependencies: - dependency-name: bindgen dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- tools/xdp/xtask/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/xdp/xtask/Cargo.toml b/tools/xdp/xtask/Cargo.toml index e8bc0b3175..f7e59da983 100644 --- a/tools/xdp/xtask/Cargo.toml +++ b/tools/xdp/xtask/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] anyhow = "1" -bindgen = "0.69" +bindgen = "0.70" clap = { version = "4.1", features = ["derive"] } elf = "0.7" env_logger = "0.11"