From b0f0ff2811e73c32a4b98b907d287797a2db4843 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 17 Sep 2026 12:50:10 +0000 Subject: [PATCH] chore(deps): bump bindgen from 0.72.1 to 0.73.2 Bumps [bindgen](https://github.com/rust-lang/rust-bindgen) from 0.72.1 to 0.73.2. - [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.2) --- updated-dependencies: - dependency-name: bindgen dependency-version: 0.73.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 27 +++++++++++++++++++++++---- src/hyperlight_host/Cargo.toml | 2 +- src/hyperlight_libc/Cargo.toml | 2 +- 3 files changed, 25 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d869fdedcb..11f4ddd24d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -189,6 +189,25 @@ dependencies = [ "syn 2.0.119", ] +[[package]] +name = "bindgen" +version = "0.73.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "787ef8ef523575546b106a58213d6e6b06198a05c2f757258c68a74273670cfa" +dependencies = [ + "bitflags 2.13.2", + "cexpr", + "clang-sys", + "log", + "prettyplease 0.3.0", + "proc-macro2", + "quote", + "regex", + "rustc-hash", + "shlex 2.0.1", + "syn 3.0.5", +] + [[package]] name = "bit-set" version = "0.8.0" @@ -1663,7 +1682,7 @@ name = "hyperlight-host" version = "0.17.0" dependencies = [ "anyhow", - "bindgen", + "bindgen 0.73.2", "bitflags 2.13.2", "blake3", "built", @@ -1740,7 +1759,7 @@ name = "hyperlight-libc" version = "0.17.0" dependencies = [ "anyhow", - "bindgen", + "bindgen 0.73.2", "cc", "glob", ] @@ -2150,7 +2169,7 @@ version = "0.14.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a54ad7278b8bc5301d5ffd2a94251c004feb971feba96c971ea4063645990757" dependencies = [ - "bindgen", + "bindgen 0.72.1", "errno", "libc", ] @@ -2976,7 +2995,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "221de5f6ef11b9be9d59b330c5b81799b3e7c51b18af84c1f235ef88998b00e1" dependencies = [ "anyhow", - "bindgen", + "bindgen 0.72.1", "libc", "libproc", "mach2", diff --git a/src/hyperlight_host/Cargo.toml b/src/hyperlight_host/Cargo.toml index fa4a524ecd..5997974d47 100644 --- a/src/hyperlight_host/Cargo.toml +++ b/src/hyperlight_host/Cargo.toml @@ -130,7 +130,7 @@ proc-maps = "0.5.0" anyhow = { version = "1.0.102" } cfg_aliases = "0.2.1" built = { version = "0.8.1", optional = true, features = ["chrono", "git2"] } -bindgen = { version = "0.72", features = ["prettyplease"] } +bindgen = { version = "0.73", features = ["prettyplease"] } cc = "1.2" [features] diff --git a/src/hyperlight_libc/Cargo.toml b/src/hyperlight_libc/Cargo.toml index 4050820080..8be580f4b3 100644 --- a/src/hyperlight_libc/Cargo.toml +++ b/src/hyperlight_libc/Cargo.toml @@ -25,4 +25,4 @@ workspace = true anyhow = "1" cc = "1.2" glob = "0.3.3" -bindgen = { version = "0.72", features = ["prettyplease"] } +bindgen = { version = "0.73", features = ["prettyplease"] }