Hide waku-sys binding warnings (#4)

This commit is contained in:
Daniel Sanchez 2022-09-29 16:22:06 +02:00 committed by GitHub
parent ba74c68c60
commit 84d251ff1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {