vcsq-cli 0.4.0

vcsq (vcsQuery): Version Control System (VCS) Querying CLI
Documentation
1
2
3
4
5
6
7
8
9
10
//! vcsq CLI, exposing most of the abilities of [`vcsq_lib`] library, for scripting.
use clap::Parser;
use std::io;
use std::process::exit;
use vcsq_cli::{main_vcsquery, MainArgs};

fn main() {
    let exit_code = main_vcsquery(&MainArgs::parse(), &mut io::stdout(), &mut io::stderr());
    exit(exit_code.into());
}