Hide waku-sys binding warnings (#4)
This commit is contained in:
parent
ba74c68c60
commit
84d251ff1b
|
@ -1,5 +1,9 @@
|
||||||
#![allow(non_upper_case_globals)]
|
#![allow(non_upper_case_globals)]
|
||||||
#![allow(non_camel_case_types)]
|
#![allow(non_camel_case_types)]
|
||||||
#![allow(non_snake_case)]
|
#![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"));
|
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
mod general;
|
|
||||||
mod events;
|
mod events;
|
||||||
|
mod general;
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
|
|
Loading…
Reference in New Issue