gitpushup 0.1.16

GitPushUp in rust!
Documentation
1
2
3
4
5
6
/// Show the application name and version from Cargo metadata.
pub fn show_version() -> String {
    const NAME: &str = env!("CARGO_PKG_NAME");
    const VERSION: &str = env!("CARGO_PKG_VERSION");
    format!("{} via 🦀 v{}", NAME, VERSION)
}