vake 1.0.2

Custom build tool for the In Silico project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use clap::Parser;

#[derive(Debug, Parser)]
#[clap(name = "Vake", version, about)]
pub struct Options {
    #[clap(flatten)]
    pub global: GlobalOptions,
}

#[derive(Debug, Parser)]
pub struct GlobalOptions {
    /// Set verbosity level
    #[clap(long("verbose"), short, global(true), parse(from_occurrences))]
    pub verbosity: u8
}