From 5e58d294f42e49964283873530ba5bac6360899e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 09:59:02 +0800 Subject: [PATCH] Bump bindgen from 0.69.4 to 0.70.1 (#61) Bumps [bindgen](https://github.com/rust-lang/rust-bindgen) from 0.69.4 to 0.70.1. - [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.70.1) --- updated-dependencies: - dependency-name: bindgen dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 26 +++++++++++++++++++++++--- crates/wamr-sys/Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 780f30c..4117f74 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -79,6 +79,26 @@ dependencies = [ "which", ] +[[package]] +name = "bindgen" +version = "0.70.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f49d8fed880d473ea71efb9bf597651e77201bdd4893efe54c9e5d65ae04ce6f" +dependencies = [ + "bitflags 2.4.1", + "cexpr", + "clang-sys", + "itertools", + "log", + "prettyplease", + "proc-macro2", + "quote", + "regex", + "rustc-hash", + "shlex", + "syn 2.0.48", +] + [[package]] name = "bitflags" version = "1.3.2" @@ -278,7 +298,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6e3e470e31fd4cae065d37f7cad56d42861ba1f9a35aa277694dee3d6b357c4" dependencies = [ "anyhow", - "bindgen", + "bindgen 0.69.4", "bitflags 1.3.2", "cmake", "filetime", @@ -322,7 +342,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb97e3800686a4d64f3c0a9998be3d6f16c903bca2a425746e97f00ed28cde5e" dependencies = [ "anyhow", - "bindgen", + "bindgen 0.69.4", "build-time", "cargo_metadata", "const_format", @@ -857,7 +877,7 @@ dependencies = [ name = "wamr-sys" version = "1.0.0" dependencies = [ - "bindgen", + "bindgen 0.70.1", "cc", "cmake", ] diff --git a/crates/wamr-sys/Cargo.toml b/crates/wamr-sys/Cargo.toml index c7c317d..a48a877 100644 --- a/crates/wamr-sys/Cargo.toml +++ b/crates/wamr-sys/Cargo.toml @@ -26,7 +26,7 @@ include = [ [dependencies] [build-dependencies] -bindgen = "0.69" +bindgen = "0.70" cc = "1.1" cmake = "0.1"