From 1a1344d68b4dac16eb3d1d5176db3dc79bf58163 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 18:19:30 +0000 Subject: [PATCH] Bump bindgen from 0.69.2 to 0.69.4 Bumps [bindgen](https://github.com/rust-lang/rust-bindgen) from 0.69.2 to 0.69.4. - [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.2...v0.69.4) --- updated-dependencies: - dependency-name: bindgen dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 21 ++++++++++++--------- wdf-umdf-sys/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 432696ab..d1600bf6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -97,17 +97,17 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.69.2" +version = "0.69.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4c69fae65a523209d34240b60abe0c42d33d1045d445c0839d8a4894a736e2d" +checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" dependencies = [ "bitflags", "cexpr", "clang-sys", + "itertools", "lazy_static", "lazycell", "log", - "peeking_take_while", "prettyplease", "proc-macro2", "quote", @@ -382,6 +382,15 @@ dependencies = [ "hashbrown", ] +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + [[package]] name = "itoa" version = "1.0.9" @@ -513,12 +522,6 @@ version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" -[[package]] -name = "peeking_take_while" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" - [[package]] name = "pin-project-lite" version = "0.2.13" diff --git a/wdf-umdf-sys/Cargo.toml b/wdf-umdf-sys/Cargo.toml index ac0816d8..4bb1ac67 100644 --- a/wdf-umdf-sys/Cargo.toml +++ b/wdf-umdf-sys/Cargo.toml @@ -12,6 +12,6 @@ bytemuck = "1.14.1" thiserror = "1.0.56" [build-dependencies] -bindgen = "0.69.2" +bindgen = "0.69.4" thiserror = "1.0.56" winreg = "0.52.0"