File tree 5 files changed +8
-2
lines changed
5 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -3673,6 +3673,7 @@ dependencies = [
3673
3673
" rustc_errors" ,
3674
3674
" rustc_feature" ,
3675
3675
" rustc_fluent_macro" ,
3676
+ " rustc_hir" ,
3676
3677
" rustc_lexer" ,
3677
3678
" rustc_lint_defs" ,
3678
3679
" rustc_macros" ,
@@ -3728,6 +3729,7 @@ dependencies = [
3728
3729
" rustc_span" ,
3729
3730
" rustc_target" ,
3730
3731
" smallvec" ,
3732
+ " thin-vec" ,
3731
3733
" tracing" ,
3732
3734
]
3733
3735
@@ -4341,6 +4343,7 @@ name = "rustc_sanitizers"
4341
4343
version = " 0.0.0"
4342
4344
dependencies = [
4343
4345
" bitflags 2.6.0" ,
4346
+ " rustc_attr" ,
4344
4347
" rustc_data_structures" ,
4345
4348
" rustc_hir" ,
4346
4349
" rustc_middle" ,
@@ -4393,9 +4396,9 @@ version = "0.0.0"
4393
4396
dependencies = [
4394
4397
" rustc_abi" ,
4395
4398
" rustc_ast" ,
4396
- " rustc_ast_pretty" ,
4397
4399
" rustc_data_structures" ,
4398
4400
" rustc_hir" ,
4401
+ " rustc_hir_pretty" ,
4399
4402
" rustc_middle" ,
4400
4403
" rustc_session" ,
4401
4404
" rustc_span" ,
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ rustc_data_structures = { path = "../rustc_data_structures" }
17
17
rustc_errors = { path = " ../rustc_errors" }
18
18
rustc_feature = { path = " ../rustc_feature" }
19
19
rustc_fluent_macro = { path = " ../rustc_fluent_macro" }
20
+ rustc_hir = { path = " ../rustc_hir" }
20
21
rustc_lexer = { path = " ../rustc_lexer" }
21
22
rustc_lint_defs = { path = " ../rustc_lint_defs" }
22
23
rustc_macros = { path = " ../rustc_macros" }
Original file line number Diff line number Diff line change @@ -15,5 +15,6 @@ rustc_serialize = { path = "../rustc_serialize" }
15
15
rustc_span = { path = " ../rustc_span" }
16
16
rustc_target = { path = " ../rustc_target" }
17
17
smallvec = { version = " 1.8.1" , features = [" union" , " may_dangle" ] }
18
+ thin-vec = " 0.2.12"
18
19
tracing = " 0.1"
19
20
# tidy-alphabetical-end
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ tracing = "0.1"
9
9
twox-hash = " 1.6.3"
10
10
rustc_data_structures = { path = " ../rustc_data_structures" }
11
11
rustc_hir = { path = " ../rustc_hir" }
12
+ rustc_attr = { path = " ../rustc_attr" }
12
13
rustc_middle = { path = " ../rustc_middle" }
13
14
rustc_span = { path = " ../rustc_span" }
14
15
rustc_target = { path = " ../rustc_target" }
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ edition = "2021"
7
7
# tidy-alphabetical-start
8
8
rustc_abi = { path = " ../rustc_abi" }
9
9
rustc_ast = { path = " ../rustc_ast" }
10
- rustc_ast_pretty = { path = " ../rustc_ast_pretty" }
11
10
rustc_data_structures = { path = " ../rustc_data_structures" }
12
11
rustc_hir = { path = " ../rustc_hir" }
12
+ rustc_hir_pretty = { path = " ../rustc_hir_pretty" }
13
13
rustc_middle = { path = " ../rustc_middle" }
14
14
rustc_session = { path = " ../rustc_session" }
15
15
rustc_span = { path = " ../rustc_span" }
You can’t perform that action at this time.
0 commit comments