Update bindgen to fix builds with LLVM 19.1 (#1639)

Update bindgen
This commit is contained in:
Nathan Whitaker 2024-10-09 15:08:57 -07:00 committed by GitHub
parent ab019251a4
commit a076d03990
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 26 deletions

27
Cargo.lock generated
View File

@ -82,16 +82,14 @@ checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80"
[[package]] [[package]]
name = "bindgen" name = "bindgen"
version = "0.69.4" version = "0.70.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" checksum = "f49d8fed880d473ea71efb9bf597651e77201bdd4893efe54c9e5d65ae04ce6f"
dependencies = [ dependencies = [
"bitflags 2.5.0", "bitflags 2.5.0",
"cexpr", "cexpr",
"clang-sys", "clang-sys",
"itertools", "itertools",
"lazy_static",
"lazycell",
"log", "log",
"prettyplease", "prettyplease",
"proc-macro2", "proc-macro2",
@ -100,7 +98,6 @@ dependencies = [
"rustc-hash", "rustc-hash",
"shlex", "shlex",
"syn 2.0.60", "syn 2.0.60",
"which 4.4.2",
] ]
[[package]] [[package]]
@ -693,12 +690,6 @@ version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.153" version = "0.2.153"
@ -1466,7 +1457,7 @@ dependencies = [
"paste", "paste",
"rustversion", "rustversion",
"trybuild", "trybuild",
"which 6.0.1", "which",
] ]
[[package]] [[package]]
@ -1719,18 +1710,6 @@ dependencies = [
"bitflags 1.3.2", "bitflags 1.3.2",
] ]
[[package]]
name = "which"
version = "4.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
dependencies = [
"either",
"home",
"once_cell",
"rustix",
]
[[package]] [[package]]
name = "which" name = "which"
version = "6.0.1" version = "6.0.1"

View File

@ -98,7 +98,7 @@ gzip-header = "1.0.0"
fslock = "0.2" fslock = "0.2"
which = "6" which = "6"
home = "0" home = "0"
bindgen = "0.69" bindgen = "0.70"
[dev-dependencies] [dev-dependencies]
miniz_oxide = "0.7.3" miniz_oxide = "0.7.3"
@ -110,7 +110,7 @@ trybuild = "1.0.96"
which = "6" which = "6"
home = "0" home = "0"
rustversion = "1" rustversion = "1"
bindgen = "0.69" bindgen = "0.70"
[[example]] [[example]]
name = "hello_world" name = "hello_world"