[rust] temporary fix for bindgen warnings

pull/1799/head
joseLuís 3 years ago
parent d38a63ca04
commit 4a16ccc78a

@ -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.
//!

Loading…
Cancel
Save