From 4a16ccc78af66a142fa01caba847d01e0913d89e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?joseLu=C3=ADs?= Date: Sat, 19 Jun 2021 09:55:14 +0200 Subject: [PATCH] [rust] temporary fix for bindgen warnings --- rust/src/bindings.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rust/src/bindings.rs b/rust/src/bindings.rs index 73613627c..6e95434e5 100644 --- a/rust/src/bindings.rs +++ b/rust/src/bindings.rs @@ -5,8 +5,11 @@ //! The current module publicly re-exports bindgen generated structs, functions, //! and constants, for their direct usage. -// [clippy & bindgen](https://github.com/rust-lang/rust-bindgen/issues/1470) +// BUG ISSUES: +// https://github.com/rust-lang/rust-bindgen/issues/1470 #[allow(clippy::all)] +// https://github.com/rust-lang/rust-bindgen/issues/2066 +#[allow(unknown_lints, deref_nullptr)] pub mod ffi { //! Rust FFI bindings, automatically generated with bindgen. //!