1 2 3 4 5 6 7 8 9 10 11 12 13
#![doc = include_str!("../README.md")] #![deny(missing_docs)] #[allow(hidden_glob_reexports)] mod cache; mod file; mod manifest; mod marker; pub use file::process_file; pub use manganis_common::*; pub use manifest::*; pub use marker::*;