1 2 3 4 5 6 7 8 9
#![deny(clippy::all)] // List of ignored linters #![allow(clippy::large_enum_variant)] #![allow(clippy::upper_case_acronyms)] #![allow(clippy::from_over_into)] #![allow(clippy::ptr_arg)] pub mod logging; pub mod workshop;