File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -52,18 +52,18 @@ use std::rc::Rc;
5252
5353/// The key used in various places to store features for a particular dependency.
5454/// The actual discrimination happens with the [`FeaturesFor`] type.
55- type PackageFeaturesKey = ( PackageId , FeaturesFor ) ;
55+ pub type PackageFeaturesKey = ( PackageId , FeaturesFor ) ;
5656/// Map of activated features.
57- type ActivateMap = HashMap < PackageFeaturesKey , BTreeSet < InternedString > > ;
57+ pub type ActivateMap = HashMap < PackageFeaturesKey , BTreeSet < InternedString > > ;
5858
5959/// Set of all activated features for all packages in the resolve graph.
6060pub struct ResolvedFeatures {
61- activated_features : ActivateMap ,
61+ pub activated_features : ActivateMap ,
6262 /// Optional dependencies that should be built.
6363 ///
6464 /// The value is the `name_in_toml` of the dependencies.
65- activated_dependencies : ActivateMap ,
66- opts : FeatureOpts ,
65+ pub activated_dependencies : ActivateMap ,
66+ pub opts : FeatureOpts ,
6767}
6868
6969/// Options for how the feature resolver works.
You can’t perform that action at this time.
0 commit comments