arborist-cli 0.2.0

CLI for arborist-metrics: cognitive/cyclomatic complexity and SLOC metrics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub fn print() {
    let version = env!("CARGO_PKG_VERSION");
    let description = env!("CARGO_PKG_DESCRIPTION");

    println!();
    println!("  Arborist CLI {version}");
    println!("  {description}");
    println!();
    println!("  Author:  Strange Days Tech, S.A.S.");
    println!("  License: MIT OR Apache-2.0");
    println!("  Repo:    https://github.com/StrangeDaysTech/arborist-cli");
    println!("  Web:     https://strangedays.tech");
    println!();
}