nextest_runner/config/core/
mod.rs

1// Copyright (c) The nextest Contributors
2// SPDX-License-Identifier: MIT OR Apache-2.0
3
4//! Core configuration types.
5//!
6//! This module contains core configuration logic for nextest.
7
8mod identifier;
9mod imp;
10mod nextest_version;
11mod tool_config;
12
13pub use identifier::*;
14pub use imp::*;
15pub use nextest_version::*;
16pub use tool_config::*;