Skip to content

Commit

Permalink
bootstrap: add module docs for core:metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Shourya742 committed Feb 23, 2025
1 parent 0769736 commit 54dd4c8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/bootstrap/src/core/metadata.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
//! This module interacts with Cargo metadata to collect and store information about
//! the packages in the Rust workspace.
//!
//! It runs `cargo metadata` to gather details about each package, including its name,
//! source, dependencies, targets, and available features. The collected metadata is then
//! used to update the `Build` structure, ensuring proper dependency resolution and
//! compilation flow.
use std::collections::BTreeMap;
use std::path::PathBuf;

Expand Down

0 comments on commit 54dd4c8

Please sign in to comment.