[rust] temporary fix for bindgen warnings

This commit is contained in:
joseLuís 2021-06-19 09:55:14 +02:00
parent d38a63ca04
commit 4a16ccc78a

View File

@ -5,8 +5,11 @@
//! The current module publicly re-exports bindgen generated structs, functions, //! The current module publicly re-exports bindgen generated structs, functions,
//! and constants, for their direct usage. //! 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)] #[allow(clippy::all)]
// https://github.com/rust-lang/rust-bindgen/issues/2066
#[allow(unknown_lints, deref_nullptr)]
pub mod ffi { pub mod ffi {
//! Rust FFI bindings, automatically generated with bindgen. //! Rust FFI bindings, automatically generated with bindgen.
//! //!