1 2 3 4 5 6 7 8 9
//! parlov library interface. //! //! Exposes the `demo` module when the `demo` feature is enabled. #![deny(clippy::all)] #![warn(clippy::pedantic)] #[cfg(feature = "demo")] pub mod demo;