cargo-nextest 0.9.130

A next-generation test runner for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) The nextest Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Command dispatch and execution.

mod app;
mod clap_error;
mod common;
mod core;
mod helpers;
mod imp;
mod utility;

pub(crate) use clap_error::EarlyArgs;
pub(crate) use core::CargoMessageFormatOpt;
pub use imp::main_impl;
pub(crate) use utility::ExtractOutputFormat;