File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,6 @@ pub struct ResolvedFeatures {
65
65
/// Options for how the feature resolver works.
66
66
#[ derive( Default ) ]
67
67
struct FeatureOpts {
68
- /// -Zpackage-features, changes behavior of feature flags in a workspace.
69
- package_features : bool ,
70
68
/// -Zfeatures is enabled, use new resolver.
71
69
new_resolver : bool ,
72
70
/// Build deps and proc-macros will not share share features with other dep kinds.
@@ -125,7 +123,6 @@ impl FeatureOpts {
125
123
) -> CargoResult < FeatureOpts > {
126
124
let mut opts = FeatureOpts :: default ( ) ;
127
125
let unstable_flags = ws. config ( ) . cli_unstable ( ) ;
128
- opts. package_features = unstable_flags. package_features ;
129
126
let mut enable = |feat_opts : & Vec < String > | {
130
127
opts. new_resolver = true ;
131
128
for opt in feat_opts {
You can’t perform that action at this time.
0 commit comments