gitlab_tagger 0.1.3

Simple crate to create tag using gitlab api
Documentation
1
2
3
4
5
6
7
8
9
use clap::Parser;
use std::error::Error;
use gitlab_tagger::{ Args, push_tag };

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    let args = Args::parse();
    push_tag(args).await
}