cargo-tag 0.1.14

Cargo plugin to bump crate's versions and Git tag them for release
Documentation
1
2
3
4
5
6
7
8
9
use anyhow::Result;

use cargo_tag::cli::Cli;
use clap::Parser;

fn main() -> Result<()> {
    let Cli::Tag(args) = Cli::parse();
    args.command.exec(&args)
}