bootstrap/utils/mod.rs
1//! This module contains integral components of the build and configuration process, providing
2//! support for a wide range of tasks and operations such as caching, tarballs, release
3//! channels, job management, etc.
4
5pub(crate) mod build_stamp;
6pub(crate) mod cache;
7pub(crate) mod cc_detect;
8pub(crate) mod change_tracker;
9pub(crate) mod channel;
10pub(crate) mod exec;
11pub(crate) mod execution_context;
12pub(crate) mod helpers;
13pub(crate) mod job;
14pub(crate) mod render_tests;
15pub(crate) mod shared_helpers;
16pub(crate) mod tarball;
17
18pub(crate) mod tracing;
19
20#[cfg(feature = "build-metrics")]
21pub(crate) mod metrics;
22
23#[cfg(test)]
24pub(crate) mod tests;