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 helpers;
12pub(crate) mod job;
13pub(crate) mod render_tests;
14pub(crate) mod shared_helpers;
15pub(crate) mod tarball;
16
17pub(crate) mod tracing;
18
19#[cfg(feature = "build-metrics")]
20pub(crate) mod metrics;
21
22#[cfg(test)]
23mod tests;