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;
18pub mod helpers;
19pub mod indenter;
20pub mod input;
21pub mod list;
22pub mod pager;
23pub mod partition;
24pub mod platform;
25pub mod redact;
26pub mod reporter;
27pub mod reuse_build;
28pub mod run_mode;
29pub mod runner;
30// TODO: move this module to the cargo-nextest crate and make it a private module once we get rid of
31// the tests in nextest-runner/tests/integration which depend on this to provide correct host and
32// target libdir.
33mod rustc_cli;
34pub mod show_config;
35pub mod signal;
36pub mod target_runner;
37mod test_command;
38pub mod test_filter;
39pub mod test_output;
40mod time;
41#[cfg(feature = "self-update")]
42pub mod update;
43pub mod usdt;
44pub mod user_config;
45pub mod write_str;
46
47pub use rustc_cli::RustcCli;