1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub use babl;
pub use ffi;
pub use glib;

mod functions;
pub use functions::*;
mod node;
mod rectangle;

#[allow(clippy::too_many_arguments)]
#[allow(clippy::let_unit_value)]
#[allow(clippy::let_and_return)]
#[allow(clippy::derived_hash_with_manual_eq)]
mod auto;
pub use auto::functions::*;
pub use auto::*;

pub mod prelude;