Add rustc_lexer as dependency to rustc_passes

This commit is contained in:
Guillaume Gomez 2020-12-01 23:41:12 +01:00
parent dc10ccfe89
commit 8a35b93c4d
2 changed files with 2 additions and 0 deletions

View File

@ -4011,6 +4011,7 @@ dependencies = [
"rustc_errors",
"rustc_hir",
"rustc_index",
"rustc_lexer",
"rustc_middle",
"rustc_serialize",
"rustc_session",

View File

@ -18,3 +18,4 @@ rustc_ast = { path = "../rustc_ast" }
rustc_serialize = { path = "../rustc_serialize" }
rustc_span = { path = "../rustc_span" }
rustc_trait_selection = { path = "../rustc_trait_selection" }
rustc_lexer = { path = "../rustc_lexer" }