We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f8a913b + 54dd4c8 commit 18ddf32Copy full SHA for 18ddf32
src/bootstrap/src/core/metadata.rs
@@ -1,3 +1,10 @@
1
+//! This module interacts with Cargo metadata to collect and store information about
2
+//! the packages in the Rust workspace.
3
+//!
4
+//! It runs `cargo metadata` to gather details about each package, including its name,
5
+//! source, dependencies, targets, and available features. The collected metadata is then
6
+//! used to update the `Build` structure, ensuring proper dependency resolution and
7
+//! compilation flow.
8
use std::collections::BTreeMap;
9
use std::path::PathBuf;
10
0 commit comments