File tree Expand file tree Collapse file tree 5 files changed +8
-2
lines changed Expand file tree Collapse file tree 5 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -3673,6 +3673,7 @@ dependencies = [
36733673 " rustc_errors" ,
36743674 " rustc_feature" ,
36753675 " rustc_fluent_macro" ,
3676+ " rustc_hir" ,
36763677 " rustc_lexer" ,
36773678 " rustc_lint_defs" ,
36783679 " rustc_macros" ,
@@ -3728,6 +3729,7 @@ dependencies = [
37283729 " rustc_span" ,
37293730 " rustc_target" ,
37303731 " smallvec" ,
3732+ " thin-vec" ,
37313733 " tracing" ,
37323734]
37333735
@@ -4341,6 +4343,7 @@ name = "rustc_sanitizers"
43414343version = " 0.0.0"
43424344dependencies = [
43434345 " bitflags 2.6.0" ,
4346+ " rustc_attr" ,
43444347 " rustc_data_structures" ,
43454348 " rustc_hir" ,
43464349 " rustc_middle" ,
@@ -4393,9 +4396,9 @@ version = "0.0.0"
43934396dependencies = [
43944397 " rustc_abi" ,
43954398 " rustc_ast" ,
4396- " rustc_ast_pretty" ,
43974399 " rustc_data_structures" ,
43984400 " rustc_hir" ,
4401+ " rustc_hir_pretty" ,
43994402 " rustc_middle" ,
44004403 " rustc_session" ,
44014404 " rustc_span" ,
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ rustc_data_structures = { path = "../rustc_data_structures" }
1717rustc_errors = { path = " ../rustc_errors" }
1818rustc_feature = { path = " ../rustc_feature" }
1919rustc_fluent_macro = { path = " ../rustc_fluent_macro" }
20+ rustc_hir = { path = " ../rustc_hir" }
2021rustc_lexer = { path = " ../rustc_lexer" }
2122rustc_lint_defs = { path = " ../rustc_lint_defs" }
2223rustc_macros = { path = " ../rustc_macros" }
Original file line number Diff line number Diff line change @@ -15,5 +15,6 @@ rustc_serialize = { path = "../rustc_serialize" }
1515rustc_span = { path = " ../rustc_span" }
1616rustc_target = { path = " ../rustc_target" }
1717smallvec = { version = " 1.8.1" , features = [" union" , " may_dangle" ] }
18+ thin-vec = " 0.2.12"
1819tracing = " 0.1"
1920# tidy-alphabetical-end
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ tracing = "0.1"
99twox-hash = " 1.6.3"
1010rustc_data_structures = { path = " ../rustc_data_structures" }
1111rustc_hir = { path = " ../rustc_hir" }
12+ rustc_attr = { path = " ../rustc_attr" }
1213rustc_middle = { path = " ../rustc_middle" }
1314rustc_span = { path = " ../rustc_span" }
1415rustc_target = { path = " ../rustc_target" }
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ edition = "2021"
77# tidy-alphabetical-start
88rustc_abi = { path = " ../rustc_abi" }
99rustc_ast = { path = " ../rustc_ast" }
10- rustc_ast_pretty = { path = " ../rustc_ast_pretty" }
1110rustc_data_structures = { path = " ../rustc_data_structures" }
1211rustc_hir = { path = " ../rustc_hir" }
12+ rustc_hir_pretty = { path = " ../rustc_hir_pretty" }
1313rustc_middle = { path = " ../rustc_middle" }
1414rustc_session = { path = " ../rustc_session" }
1515rustc_span = { path = " ../rustc_span" }
You can’t perform that action at this time.
0 commit comments