1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
//! # makers //! //! Rust task runner and build tool.<br> //! The makers executable works the same as cargo-make except that it is not invoked //! as a cargo sub command. //! //! # Contributing //! See [contributing guide](https://github.com/sagiegurari/cargo-make/blob/master/.github/CONTRIBUTING.md) //! //! # License //! Developed by Sagie Gur-Ari and licensed under the //! [Apache 2](https://github.com/sagiegurari/cargo-make/blob/master/LICENSE) open source license. //! #[cfg(test)] #[path = "makers_test.rs"] mod makers_test; fn get_name() -> String { "makers".to_string() } fn main() { #[cfg(windows)] let _ = ansi_term::enable_ansi_support(); let name = get_name(); cli::run_cli(name, false); }