From f02df6f9090c06bc7bd3d78a36c1528fdfebb3b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Sep 2026 03:09:37 +0000 Subject: [PATCH] chore(deps): Bump bindgen in /src/code-validator/guest Bumps [bindgen](https://github.com/rust-lang/rust-bindgen) from 0.72.1 to 0.73.1. - [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.72.1...v0.73.1) --- updated-dependencies: - dependency-name: bindgen dependency-version: 0.73.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- src/code-validator/guest/Cargo.lock | 27 ++++++++++++++++++--- src/code-validator/guest/runtime/Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/src/code-validator/guest/Cargo.lock b/src/code-validator/guest/Cargo.lock index a488882d..604c770c 100644 --- a/src/code-validator/guest/Cargo.lock +++ b/src/code-validator/guest/Cargo.lock @@ -111,6 +111,25 @@ dependencies = [ "syn 2.0.118", ] +[[package]] +name = "bindgen" +version = "0.73.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54be9a169b85a1bef39252af30bb6246a31b23c7e0f6a162520dd869f8dad33c" +dependencies = [ + "bitflags 2.13.0", + "cexpr", + "clang-sys", + "log", + "prettyplease", + "proc-macro2", + "quote", + "regex", + "rustc-hash", + "shlex 2.0.1", + "syn 3.0.3", +] + [[package]] name = "bitflags" version = "1.3.2" @@ -835,7 +854,7 @@ name = "hyperlight-analysis-runtime" version = "0.1.0" dependencies = [ "anyhow", - "bindgen", + "bindgen 0.73.1", "clap", "hashbrown", "hyperlight-common", @@ -933,7 +952,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d85dcf5ae7a578e1b09bdeb76cc3b3ca8e6e57d6395d2f57204aec45c1bbbde9" dependencies = [ "anyhow", - "bindgen", + "bindgen 0.72.1", "bitflags 2.13.0", "blake3", "bytemuck", @@ -981,7 +1000,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "108dd0e7335821a2ef0dfa375c08236c3302a117045822e2aa68c64147f8e895" dependencies = [ "anyhow", - "bindgen", + "bindgen 0.72.1", "cc", "glob", ] @@ -1578,7 +1597,7 @@ version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a13ac243b86a74120814ef7e9e30ad5a2c1199b7b9963b1cf7c84e4cdc1cad99" dependencies = [ - "bindgen", + "bindgen 0.72.1", "cc", ] diff --git a/src/code-validator/guest/runtime/Cargo.toml b/src/code-validator/guest/runtime/Cargo.toml index a3e48275..e42b7edb 100644 --- a/src/code-validator/guest/runtime/Cargo.toml +++ b/src/code-validator/guest/runtime/Cargo.toml @@ -38,7 +38,7 @@ hyperlight-guest-bin = { workspace = true } clap = { version = "4.6", features = ["derive"] } [build-dependencies] -bindgen = "0.72" +bindgen = "0.73" [lints.rust] unexpected_cfgs = { level = "allow", check-cfg = ['cfg(hyperlight)'] }