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

//! Utility commands: show-config, self, debug, store.
//!
//! These commands are management/debugging tools that are standalone and don't
//! share core infrastructure.

mod debug;
mod self_cmd;
mod show_config;
mod store;

pub(crate) use debug::{DebugCommand, ExtractOutputFormat};
pub(crate) use self_cmd::SelfCommand;
pub(crate) use show_config::ShowConfigCommand;
pub(crate) use store::StoreCommand;