nextest_runner/cargo_config/mod.rs
1// Copyright (c) The nextest Contributors
2// SPDX-License-Identifier: MIT OR Apache-2.0
3
4//! Support for emulating Cargo's configuration file discovery.
5//!
6//! Since `cargo config get` is not stable as of Rust 1.61, nextest must do its own config file
7//! search.
8
9mod custom_platform;
10mod discovery;
11mod env;
12mod target_triple;
13#[cfg(test)]
14mod test_helpers;
15
16pub use custom_platform::*;
17pub use discovery::*;
18pub use env::*;
19pub use target_triple::*;