1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright (c) The nextest Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0
//! cargo-nextest is a next-generation test runner for Rust.
//!
//! For documentation and usage, see [the nextest site](https://nexte.st).
//!
//! # Installation
//!
//! To install nextest binaries (quicker), see [_Pre-built
//! binaries_](https://nexte.st/docs/installation/pre-built-binaries).
//!
//! To install from source, run:
//!
//! ```sh
//! cargo install --locked cargo-nextest
//! ```
//!
//! **The `--locked` flag is required.** Builds without `--locked` are, and will
//! remain, broken.
//!
//! # Minimum supported Rust versions
//!
//! Nextest has two minimum supported Rust versions (MSRVs): one for _building_
//! nextest itself, and one for _running tests_ with `cargo nextest run`.
//!
//! For more information about the MSRVs and the stability policy around them,
//! see [_Minimum supported Rust
//! versions_](https://nexte.st/docs/stability/#minimum-supported-rust-versions)
//! on the nextest site.
pub use ExtractOutputFormat;
pub use main_impl;
pub use *;
pub use OutputWriter;