nextest_runner/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
// Copyright (c) The nextest Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0
#![warn(missing_docs)]
//! Core functionality for [cargo nextest](https://crates.io/crates/cargo-nextest). For a
//! higher-level overview, see that documentation.
//!
//! For the basic flow of operations in nextest, see [this blog
//! post](https://sunshowers.io/posts/nextest-and-tokio/).
pub mod cargo_config;
pub mod config;
#[cfg(feature = "experimental-tokio-console")]
pub mod console;
pub mod double_spawn;
pub mod errors;
mod helpers;
pub mod indenter;
pub mod input;
pub mod list;
pub mod partition;
pub mod platform;
pub mod redact;
pub mod reporter;
pub mod reuse_build;
pub mod runner;
// TODO: move this module to the cargo-nextest crate and make it a private module once we get rid of
// the tests in nextest-runner/tests/integration which depend on this to provide correct host and
// target libdir.
mod rustc_cli;
pub mod show_config;
pub mod signal;
pub mod target_runner;
mod test_command;
pub mod test_filter;
pub mod test_output;
mod time;
#[cfg(feature = "self-update")]
pub mod update;
pub mod write_str;
pub use rustc_cli::RustcCli;