1//! Generate strings from a grammar. 2 3#![deny(unsafe_code)] 4#![deny(missing_docs)] 5 6mod genetic; 7#[cfg(feature = "weighted")] 8pub mod weighted;