app/
app.rs

1
2
3
4
5
6
7
use cargo_regression::{test, Args, TestExitCode};

#[tokio::main]
async fn main() -> TestExitCode {
  let args = Args::parse_from(std::env::args_os());
  test(args).await
}