1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#![feature(const_trait_impl)] #![deny(clippy::all)] #![deny(clippy::complexity)] #![deny(clippy::pedantic)] #![deny(clippy::perf)] #![deny(clippy::suspicious)] #![allow(clippy::module_name_repetitions)] #![allow(ambiguous_glob_reexports)] #[cfg(feature = "atomic")] pub mod atomic; pub mod data_type; pub mod function; mod macros; pub mod prelude; pub mod property; pub mod selector; pub mod style; #[cfg(test)] mod test; pub mod utils;