From 99271c83ed138282ba7d5f5e6634142f96d01205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Vask=C3=B3?= <1771332+vlaci@users.noreply.github.com> Date: Thu, 14 Dec 2023 20:34:35 +0100 Subject: [PATCH] rust: update bindgen --- Cargo.lock | 19 +++++++++++++++---- hyperscan-sys/Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d6ec311..3dd059a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,23 +19,24 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "bindgen" -version = "0.61.0" +version = "0.69.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a022e58a142a46fea340d68012b9201c094e93ec3d033a944a24f8fd4a4f09a" +checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.4.1", "cexpr", "clang-sys", "lazy_static", "lazycell", "log", "peeking_take_while", + "prettyplease", "proc-macro2", "quote", "regex", "rustc-hash", "shlex", - "syn 1.0.109", + "syn 2.0.40", "which", ] @@ -283,6 +284,16 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" +[[package]] +name = "prettyplease" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" +dependencies = [ + "proc-macro2", + "syn 2.0.40", +] + [[package]] name = "proc-macro2" version = "1.0.70" diff --git a/hyperscan-sys/Cargo.toml b/hyperscan-sys/Cargo.toml index a674ce1..8cdb02b 100644 --- a/hyperscan-sys/Cargo.toml +++ b/hyperscan-sys/Cargo.toml @@ -12,5 +12,5 @@ hyperscan = ["cmake"] vectorscan = ["cmake"] [build-dependencies] -bindgen = "0.61.0" +bindgen = "0.69.0" cmake = { version = "0.1", optional = true }