1#![cfg_attr( 2 not(test), 3 deny( 4 clippy::expect_used, 5 clippy::panic, 6 clippy::todo, 7 clippy::unimplemented, 8 clippy::unwrap_used 9 ) 10)] 11 12pub mod build; 13pub mod data; 14pub mod error; 15pub mod layout; 16pub mod output;