Skip to content

Commit f354e3f

Browse files
committed
Fix: Keep export_incdirs even when excluding deps
1 parent 34ee071 commit f354e3f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

‎src/src.rs‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,7 @@ impl<'ctx> SourceGroup<'ctx> {
172172
.collect();
173173
}
174174

175-
let mut export_incdirs = self.export_incdirs.clone();
176-
export_incdirs.retain(|k, _| packages.contains(k));
175+
let export_incdirs = self.export_incdirs.clone();
177176
Some(
178177
SourceGroup {
179178
package: self.package,

0 commit comments

Comments
 (0)