Skip to main content

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