We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e8939b commit 2172adbCopy full SHA for 2172adb
src/bootstrap/lib.rs
@@ -1119,6 +1119,10 @@ impl Build {
1119
let krate = &self.crates[&krate];
1120
ret.push(krate);
1121
for dep in &krate.deps {
1122
+ if !self.crates.contains_key(dep) {
1123
+ // Ignore non-workspace members.
1124
+ continue;
1125
+ }
1126
// Don't include optional deps if their features are not
1127
// enabled. Ideally this would be computed from `cargo
1128
// metadata --features …`, but that is somewhat slow. Just
0 commit comments