From 955c22ee64f715d722ba89442662d8b50ea011d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 16:02:38 +0000 Subject: [PATCH] Build(deps): bump bindgen from 0.68.1 to 0.69.1 Bumps [bindgen](https://github.com/rust-lang/rust-bindgen) from 0.68.1 to 0.69.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.68.1...v0.69.1) --- updated-dependencies: - dependency-name: bindgen dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 26 +++++++++++++++++++++++--- sanzu-broker/Cargo.toml | 2 +- sanzu-common/Cargo.toml | 2 +- sanzu/Cargo.toml | 2 +- 4 files changed, 26 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 675d189..3e9b06a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -409,6 +409,26 @@ name = "bindgen" version = "0.68.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "726e4313eb6ec35d2730258ad4e15b547ee75d6afaa1361a922e78e59b7d8078" +dependencies = [ + "bitflags 2.4.1", + "cexpr", + "clang-sys", + "lazy_static", + "lazycell", + "peeking_take_while", + "proc-macro2", + "quote", + "regex", + "rustc-hash", + "shlex", + "syn 2.0.39", +] + +[[package]] +name = "bindgen" +version = "0.69.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2" dependencies = [ "bitflags 2.4.1", "cexpr", @@ -2485,7 +2505,7 @@ name = "sanzu" version = "0.1.4" dependencies = [ "anyhow", - "bindgen 0.68.1", + "bindgen 0.69.1", "byteorder", "cc", "clap 4.4.8", @@ -2536,7 +2556,7 @@ name = "sanzu-common" version = "0.1.4" dependencies = [ "anyhow", - "bindgen 0.68.1", + "bindgen 0.69.1", "byteorder", "env_logger 0.10.1", "libgssapi", @@ -2556,7 +2576,7 @@ name = "sanzu_broker" version = "0.1.4" dependencies = [ "anyhow", - "bindgen 0.68.1", + "bindgen 0.69.1", "byteorder", "cc", "clap 4.4.8", diff --git a/sanzu-broker/Cargo.toml b/sanzu-broker/Cargo.toml index 35a1ffa..6b89122 100644 --- a/sanzu-broker/Cargo.toml +++ b/sanzu-broker/Cargo.toml @@ -8,7 +8,7 @@ description = "Broker for sanzu video server" license = "GPL-3.0" [build-dependencies] -bindgen = "0.68" +bindgen = "0.69" cc = "1.0" [dependencies] diff --git a/sanzu-common/Cargo.toml b/sanzu-common/Cargo.toml index 49a03ab..02beb65 100644 --- a/sanzu-common/Cargo.toml +++ b/sanzu-common/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" description = "Sanzu helper code" [build-dependencies] -bindgen = "0.68" +bindgen = "0.69" prost-build = "0.12" [dependencies] diff --git a/sanzu/Cargo.toml b/sanzu/Cargo.toml index 10bedeb..d981e41 100644 --- a/sanzu/Cargo.toml +++ b/sanzu/Cargo.toml @@ -8,7 +8,7 @@ description = "Sanzu video server, proxy and client" license = "GPL-3.0" [build-dependencies] -bindgen = "0.68" +bindgen = "0.69" cc = "1.0" winres = {git = "https://github.com/serpilliere/winres", branch="link_resources"}