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