gdnative_bindings/lib.rs
1// For silenced lints/warnings, see also gdnative-sys/src/lib.rs
2
3// Generated bindings don't follow some conventions
4#![allow(non_snake_case)]
5#![allow(unused_unsafe)]
6// False positives on generated drops that enforce lifetime
7#![allow(clippy::drop_copy)]
8// False positives on thread-safe singletons
9#![allow(clippy::non_send_fields_in_send_ty)]
10// Disable non-critical lints for generated code
11#![allow(clippy::style, clippy::complexity, clippy::perf)]
12
13mod generated;
14pub use generated::*;
15
16pub mod utils;
17
18pub(crate) mod icalls;