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 d5d406f commit d0a51d7Copy full SHA for d0a51d7
crates/project_model/src/workspace.rs
@@ -276,11 +276,8 @@ impl ProjectWorkspace {
276
277
pub fn collect_build_data_configs(&self, collector: &mut BuildDataCollector) {
278
match self {
279
- ProjectWorkspace::Cargo { cargo, rustc, .. } => {
+ ProjectWorkspace::Cargo { cargo, .. } => {
280
collector.add_config(&cargo.workspace_root(), cargo.build_data_config().clone());
281
- if let Some(rustc) = rustc {
282
- collector.add_config(rustc.workspace_root(), rustc.build_data_config().clone());
283
- }
284
}
285
_ => {}
286
0 commit comments