From 18a1258005f1a96d7c91dd7203aeabd74b78c071 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 22:23:38 +0000 Subject: [PATCH] Bump bindgen from 0.69.4 to 0.71.0 Bumps [bindgen](https://github.com/rust-lang/rust-bindgen) from 0.69.4 to 0.71.0. - [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.4...v0.71.0) --- updated-dependencies: - dependency-name: bindgen dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++------------ crates/rb-sys-build/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 86cb0637..52c74815 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13,16 +13,14 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.69.4" +version = "0.71.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" +checksum = "360897d4f2fdeea5d32f6dac9287952ae5babdc2aad42ad787c9470a4a6e3fee" dependencies = [ "bitflags", "cexpr", "clang-sys", "itertools", - "lazy_static", - "lazycell", "proc-macro2", "quote", "regex", @@ -112,12 +110,6 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" -[[package]] -name = "lazycell" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" - [[package]] name = "libc" version = "0.2.155" @@ -271,9 +263,9 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "rustc-hash" -version = "1.1.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" +checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497" [[package]] name = "rustix" diff --git a/crates/rb-sys-build/Cargo.toml b/crates/rb-sys-build/Cargo.toml index 8e4735f1..d6a321c4 100644 --- a/crates/rb-sys-build/Cargo.toml +++ b/crates/rb-sys-build/Cargo.toml @@ -15,7 +15,7 @@ doctest = false [dependencies] regex = "1" shell-words = "1.1" -bindgen = { version = "0.69", default-features = false, features = ["runtime"] } +bindgen = { version = "0.71", default-features = false, features = ["runtime"] } syn = { version = "2.0", features = ["parsing", "full", "extra-traits"] } quote = "1.0" lazy_static = "1.4.0"