nextest_runner/reporter/structured/mod.rs
1// Copyright (c) The nextest Contributors
2// SPDX-License-Identifier: MIT OR Apache-2.0
3
4//! Reporting of data in a streaming, structured fashion.
5//!
6//! Currently, the only output supported is a compatibility layer with libtest.
7//! At some point it would be worth designing a full-fidelity structured output.
8
9mod imp;
10mod libtest;
11
12pub use imp::*;
13pub use libtest::*;