vkcargo 0.45.1

Fork of Cargo, a package manager for Rust. This fork is for testing of vojtechkral's changes and is temporary.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::command_prelude::*;

use crate::cli;

pub fn cli() -> App {
    subcommand("version")
        .about("Show version information")
        .arg(opt("quiet", "No output printed to stdout").short("q"))
}

pub fn exec(_config: &mut Config, args: &ArgMatches<'_>) -> CliResult {
    let verbose = args.occurrences_of("verbose") > 0;
    let version = cli::get_version_string(verbose);
    print!("{}", version);
    Ok(())
}