Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 27ab932

Browse files
committedJan 31, 2025
Ignore duplicated dep for literal-escaper
1 parent 1851b79 commit 27ab932

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎src/bootstrap/src/core/metadata.rs

+3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ pub fn build(build: &mut Build) {
6363
let relative_path = krate.local_path(build);
6464
build.crates.insert(name.clone(), krate);
6565
let existing_path = build.crate_paths.insert(relative_path, name);
66+
if existing_path.as_deref() == Some("literal-escaper") {
67+
continue;
68+
}
6669
assert!(
6770
existing_path.is_none(),
6871
"multiple crates with the same path: {}",

0 commit comments

Comments
 (0)
Failed to load comments.