Skip to main content

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 tarball;
15
16pub(crate) mod tracing;
17
18#[cfg(feature = "build-metrics")]
19pub(crate) mod metrics;
20
21#[cfg(feature = "tracing")]
22pub(crate) mod step_graph;
23
24#[cfg(test)]
25pub(crate) mod tests;