cargo_nextest/lib.rs
1// Copyright (c) The nextest Contributors
2// SPDX-License-Identifier: MIT OR Apache-2.0
3
4//! A new, faster test runner for Rust.
5//!
6//! For documentation and usage, see [the nextest site](https://nexte.st).
7//!
8//! # Installation
9//!
10//! While you can install cargo-nextest from source, using the pre-built binaries is recommended.
11//! See [Pre-built binaries](https://nexte.st/docs/installation/pre-built-binaries) on the nextest
12//! site for more information.
13
14#![warn(missing_docs)]
15
16mod cargo_cli;
17mod dispatch;
18#[cfg(unix)]
19mod double_spawn;
20mod errors;
21mod helpers;
22mod output;
23mod reuse_build;
24#[cfg(feature = "self-update")]
25mod update;
26mod version;
27
28#[doc(hidden)]
29pub use dispatch::*;
30#[doc(hidden)]
31pub use errors::*;
32#[doc(hidden)]
33pub use output::OutputWriter;