Hide waku-sys binding warnings

This commit is contained in:
Daniel Sanchez Quiros 2022-09-29 15:29:14 +02:00
parent ba74c68c60
commit 8df4bc89fe
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(clippy::derive_partial_eq_without_eq)]
#![allow(clippy::useless_transmute)]
#![allow(clippy::too_many_arguments)]
#![allow(improper_ctypes)]
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));

View File

@ -1,5 +1,5 @@
mod general;
mod events;
mod general;
#[cfg(test)]
mod tests {