1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#![allow(non_snake_case)] // because of the generated bindings.
#![allow(unused_unsafe)]
// False positives on generated drops that enforce lifetime
#![allow(clippy::drop_copy)]
// Disable non-critical lints for generated code.
#![allow(clippy::style, clippy::complexity, clippy::perf)]

mod generated;
pub use generated::*;

pub mod utils;

pub(crate) mod icalls;