pub type OutputMap<'g> = BTreeMap<OutputKey, BTreeMap<&'g PackageId, (PackageMetadata<'g>, BTreeSet<&'g str>)>>;Expand description
The map used by Hakari to generate output TOML.
This is a two-level BTreeMap, where:
- the top-level keys are
OutputKeyinstances. - the inner map is keyed by dependency
PackageIdinstances, and the values are the correspondingPackageMetadatafor this dependency, and the set of features enabled for this package.
This is an alias for the type of Hakari::output_map.
Aliased Typeยง
pub struct OutputMap<'g> { /* private fields */ }