mantra 0.4.0

`mantra` offers a lightweight approach for requirement tracing and coverage.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use clap::Parser;

#[tokio::main]
async fn main() {
    let cfg = mantra::cfg::Config::parse();

    if let Err(err) = mantra::run(cfg).await {
        println!("{err}");
        std::process::exit(-1);
    }
}