From 3eb8a0c7659d05fae11f3dc2d6400bb1f6c4690d Mon Sep 17 00:00:00 2001 From: "Alexis (Poliorcetics) Bourget" Date: Tue, 7 Jun 2022 08:51:21 +0200 Subject: [PATCH] chore: update to bindgen 1.60 --- boring-sys/Cargo.toml | 2 +- boring-sys/src/lib.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/boring-sys/Cargo.toml b/boring-sys/Cargo.toml index 59bf5cfe..7345eb09 100644 --- a/boring-sys/Cargo.toml +++ b/boring-sys/Cargo.toml @@ -27,7 +27,7 @@ include = [ ] [build-dependencies] -bindgen = { version = "0.59", default-features = false, features = ["runtime"] } +bindgen = { version = "0.60", default-features = false, features = ["runtime"] } cmake = "0.1" [features] diff --git a/boring-sys/src/lib.rs b/boring-sys/src/lib.rs index fb09a14b..6dba54c2 100644 --- a/boring-sys/src/lib.rs +++ b/boring-sys/src/lib.rs @@ -15,7 +15,6 @@ use std::convert::TryInto; use std::ffi::c_void; use std::os::raw::{c_char, c_int, c_uint, c_ulong}; -#[allow(deref_nullptr)] // TODO: remove this when https://github.com/rust-lang/rust-bindgen/issues/1651 finally gets fixed mod generated { include!(concat!(env!("OUT_DIR"), "/bindings.rs")); }