Skip to content

Commit bcd7fba

Browse files
committed
Auto merge of #9617 - danieleades:refactor/useless-conversions, r=ehuss
remove useless conversions
2 parents e928b62 + a6d3fb0 commit bcd7fba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cargo/core/compiler/output_depinfo.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ fn add_deps_for_unit(
8484
// The paths we have saved from the unit are of arbitrary relativeness and may be
8585
// relative to the crate root of the dependency.
8686
let path = unit.pkg.root().join(path);
87-
deps.insert(path.into());
87+
deps.insert(path);
8888
}
8989
}
9090
}

0 commit comments

Comments
 (0)