1 2 3 4 5 6 7 8 9 10 11 12 13
#![doc = include_str!("../README.md")] #![deny(missing_docs)] pub use { clap, manifest::{ModuleType, Profile}, util::build, }; pub mod builder; pub mod cmd; pub mod manifest; pub mod util;