fn build_sbom_graph<'a>(
build_runner: &'a BuildRunner<'_, '_>,
root: &'a Unit,
) -> BTreeMap<&'a Unit, BTreeSet<(&'a Unit, SbomDependencyType)>>
Expand description
List all dependencies, including transitive ones. A dependency can also appear multiple times if it’s using different settings, e.g. profile, features or crate versions.
Returns a graph of dependencies.