()
| 9 | use std::path::PathBuf; |
| 10 | |
| 11 | pub(crate) fn show_banner() { |
| 12 | let banner = format!( |
| 13 | r#" |
| 14 | ______ __ _____ __ |
| 15 | / ____/____ ____/ // ___/ ____ ___ ___ ____/ / |
| 16 | / / / __ \ / __ / \__ \ / __ \ / _ \ / _ \ / __ / |
| 17 | / /___ / /_/ // /_/ / ___/ // /_/ // __// __// /_/ / |
| 18 | \____/ \____/ \__,_/ /____// .___/ \___/ \___/ \__,_/ |
| 19 | https://codspeed.io /_/ runner v{VERSION} |
| 20 | "# |
| 21 | ); |
| 22 | println!("{banner}"); |
| 23 | debug!("codspeed v{VERSION}"); |
| 24 | } |
| 25 | |
| 26 | /// Arguments shared between run and exec commands |
| 27 | #[derive(Args, Debug, Clone)] |
no outgoing calls
no test coverage detected