1 2 3 4 5 6 7 8 9 10 11 12
#![doc = include_str!("doc.md")] pub mod algorithm; pub mod config; pub mod model; pub mod util; // managing exposure of test assets to only be available when the dev dependency // feature is active // #[cfg(feature = "test-utils")] pub mod testing;