From 0967726208e8a1d019209da438690413f9596f74 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Oct 2022 07:16:03 +0800 Subject: [PATCH] Update bindgen requirement from 0.60 to 0.61 (#89) Updates the requirements on [bindgen](https://github.com/rust-lang/rust-bindgen) to permit the latest version. - [Release notes](https://github.com/rust-lang/rust-bindgen/releases) - [Changelog](https://github.com/rust-lang/rust-bindgen/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/rust-bindgen/compare/v0.60.0...v0.61.0) --- updated-dependencies: - dependency-name: bindgen dependency-type: direct:production ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- libduckdb-sys/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libduckdb-sys/Cargo.toml b/libduckdb-sys/Cargo.toml index dc1c12a0..29be1ee7 100644 --- a/libduckdb-sys/Cargo.toml +++ b/libduckdb-sys/Cargo.toml @@ -22,7 +22,7 @@ buildtime_bindgen = ["bindgen", "pkg-config", "vcpkg"] [dependencies] [build-dependencies] -bindgen = { version = "0.60", optional = true, default-features = false, features = ["runtime"] } +bindgen = { version = "0.61", optional = true, default-features = false, features = ["runtime"] } pkg-config = { version = "0.3.24", optional = true } cc = { version = "1.0", features = ["parallel"], optional = true } vcpkg = { version = "0.2", optional = true }