git-semver 0.1.1

Parse and calculate semantic version information from a Git repository.
Documentation
1
2
3
4
5
6
fn main() {
    if let Err(e) = git_semver::cli::get_args().and_then(git_semver::cli::run) {
        eprintln!("{e}");
        std::process::exit(1);
    }
}