From 82e09fcc97a5afdda4ae253b84cc93a7839b866c Mon Sep 17 00:00:00 2001 From: Marcel Lilienthal <134974+mlilien@users.noreply.github.com> Date: Thu, 16 Jul 2026 08:21:33 +0200 Subject: [PATCH] chore: update bindgen to 0.72.x to enable yocto wrynose support Signed-off-by: Marcel Lilienthal <134974+mlilien@users.noreply.github.com> --- Cargo.toml | 4 ++-- src/lib.rs | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 753ad57..fafeb09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2024" license = "MIT OR Apache-2.0" name = "azure-iot-sdk-sys" repository = "https://github.com/omnect/azure-iot-sdk-sys" -version = "0.6.3" +version = "0.6.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -18,5 +18,5 @@ default = [] edge_modules = [] [build-dependencies] -bindgen = "0.71" +bindgen = "0.72" pkg-config = "0.3" diff --git a/src/lib.rs b/src/lib.rs index e8218ad..1e3e30d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,5 +3,8 @@ #![allow(non_camel_case_types)] #![allow(non_snake_case)] #![allow(improper_ctypes)] +#![allow(unnecessary_transmutes)] +#![allow(clippy::missing_safety_doc)] +#![allow(clippy::ptr_offset_with_cast)] include!(concat!(env!("OUT_DIR"), "/bindings.rs"));