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;
52
52
53
53
/// The key used in various places to store features for a particular dependency.
54
54
/// The actual discrimination happens with the [`FeaturesFor`] type.
55
- type PackageFeaturesKey = ( PackageId , FeaturesFor ) ;
55
+ pub type PackageFeaturesKey = ( PackageId , FeaturesFor ) ;
56
56
/// Map of activated features.
57
- type ActivateMap = HashMap < PackageFeaturesKey , BTreeSet < InternedString > > ;
57
+ pub type ActivateMap = HashMap < PackageFeaturesKey , BTreeSet < InternedString > > ;
58
58
59
59
/// Set of all activated features for all packages in the resolve graph.
60
60
pub struct ResolvedFeatures {
61
- activated_features : ActivateMap ,
61
+ pub activated_features : ActivateMap ,
62
62
/// Optional dependencies that should be built.
63
63
///
64
64
/// 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 ,
67
67
}
68
68
69
69
/// Options for how the feature resolver works.
You can’t perform that action at this time.
0 commit comments