nextest_runner/cargo_config/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (c) The nextest Contributors
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Support for emulating Cargo's configuration file discovery.
//!
//! Since `cargo config get` is not stable as of Rust 1.61, nextest must do its own config file
//! search.

mod custom_platform;
mod discovery;
mod env;
mod target_triple;
#[cfg(test)]
mod test_helpers;

pub use custom_platform::*;
pub use discovery::*;
pub use env::*;
pub use target_triple::*;