File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -686,13 +686,13 @@ impl<'cfg> Workspace<'cfg> {
686
686
} ) ?;
687
687
}
688
688
689
+ self . find_path_deps ( & root_manifest_path, & root_manifest_path, false ) ?;
690
+
689
691
if let Some ( default) = default_members_paths {
690
692
for path in default {
691
693
let normalized_path = paths:: normalize_path ( & path) ;
692
694
let manifest_path = normalized_path. join ( "Cargo.toml" ) ;
693
- if !self . members . contains ( & manifest_path)
694
- && ( self . is_virtual ( ) || manifest_path != root_manifest_path)
695
- {
695
+ if !self . members . contains ( & manifest_path) {
696
696
// default-members are allowed to be excluded, but they
697
697
// still must be referred to by the original (unfiltered)
698
698
// members list. Note that we aren't testing against the
@@ -718,7 +718,7 @@ impl<'cfg> Workspace<'cfg> {
718
718
self . default_members . push ( self . current_manifest . clone ( ) )
719
719
}
720
720
721
- self . find_path_deps ( & root_manifest_path , & root_manifest_path , false )
721
+ Ok ( ( ) )
722
722
}
723
723
724
724
fn find_path_deps (
You can’t perform that action at this time.
0 commit comments