nextest_runner/
lib.rs

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