diff --git a/Cargo.lock b/Cargo.lock index 752e44d6d..09af39791 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -183,6 +183,25 @@ dependencies = [ "syn 2.0.119", ] +[[package]] +name = "bindgen" +version = "0.73.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54be9a169b85a1bef39252af30bb6246a31b23c7e0f6a162520dd869f8dad33c" +dependencies = [ + "bitflags 2.13.1", + "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" @@ -1656,7 +1675,7 @@ name = "hyperlight-host" version = "0.17.0" dependencies = [ "anyhow", - "bindgen", + "bindgen 0.73.1", "bitflags 2.13.1", "blake3", "built", @@ -1733,7 +1752,7 @@ name = "hyperlight-libc" version = "0.17.0" dependencies = [ "anyhow", - "bindgen", + "bindgen 0.73.1", "cc", "glob", ] @@ -2142,7 +2161,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", ] @@ -2958,7 +2977,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 f85c358b6..ae195e897 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 405082008..8be580f4b 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"] }