crabscore-cli 0.1.1

Command-line interface for CrabScore - The Rust Efficiency Standard
1
2
3
4
5
6
7
8
9
use anyhow::Result;
use clap::Parser;
use crabscore_cli::{cli::Cli, command};

#[tokio::main]
async fn main() -> Result<()> {
    let cli = Cli::parse();
    command::execute(cli.command, cli.verbose).await
}