We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
literal-escaper
1 parent 1851b79 commit 27ab932Copy full SHA for 27ab932
src/bootstrap/src/core/metadata.rs
@@ -63,6 +63,9 @@ pub fn build(build: &mut Build) {
63
let relative_path = krate.local_path(build);
64
build.crates.insert(name.clone(), krate);
65
let existing_path = build.crate_paths.insert(relative_path, name);
66
+ if existing_path.as_deref() == Some("literal-escaper") {
67
+ continue;
68
+ }
69
assert!(
70
existing_path.is_none(),
71
"multiple crates with the same path: {}",
0 commit comments