File tree Expand file tree Collapse file tree 4 files changed +43
-1
lines changed Expand file tree Collapse file tree 4 files changed +43
-1
lines changed Original file line number Diff line number Diff line change @@ -3358,6 +3358,22 @@ dependencies = [
3358
3358
" core" ,
3359
3359
]
3360
3360
3361
+ [[package ]]
3362
+ name = " rustc_ast_lowering"
3363
+ version = " 0.0.0"
3364
+ dependencies = [
3365
+ " log" ,
3366
+ " rustc" ,
3367
+ " rustc_data_structures" ,
3368
+ " rustc_error_codes" ,
3369
+ " rustc_errors" ,
3370
+ " rustc_index" ,
3371
+ " rustc_span" ,
3372
+ " rustc_target" ,
3373
+ " smallvec 1.0.0" ,
3374
+ " syntax" ,
3375
+ ]
3376
+
3361
3377
[[package ]]
3362
3378
name = " rustc_builtin_macros"
3363
3379
version = " 0.0.0"
@@ -3578,6 +3594,7 @@ dependencies = [
3578
3594
" once_cell" ,
3579
3595
" rustc" ,
3580
3596
" rustc-rayon" ,
3597
+ " rustc_ast_lowering" ,
3581
3598
" rustc_builtin_macros" ,
3582
3599
" rustc_codegen_llvm" ,
3583
3600
" rustc_codegen_ssa" ,
@@ -3783,6 +3800,7 @@ dependencies = [
3783
3800
" bitflags" ,
3784
3801
" log" ,
3785
3802
" rustc" ,
3803
+ " rustc_ast_lowering" ,
3786
3804
" rustc_data_structures" ,
3787
3805
" rustc_error_codes" ,
3788
3806
" rustc_errors" ,
Original file line number Diff line number Diff line change
1
+ [package ]
2
+ authors = [" The Rust Project Developers" ]
3
+ name = " rustc_ast_lowering"
4
+ version = " 0.0.0"
5
+ edition = " 2018"
6
+
7
+ [lib ]
8
+ name = " rustc_ast_lowering"
9
+ path = " lib.rs"
10
+ doctest = false
11
+
12
+ [dependencies ]
13
+ log = { version = " 0.4" , features = [" release_max_level_info" , " std" ] }
14
+ rustc = { path = " ../librustc" }
15
+ rustc_target = { path = " ../librustc_target" }
16
+ rustc_data_structures = { path = " ../librustc_data_structures" }
17
+ rustc_index = { path = " ../librustc_index" }
18
+ rustc_span = { path = " ../librustc_span" }
19
+ rustc_error_codes = { path = " ../librustc_error_codes" }
20
+ rustc_errors = { path = " ../librustc_errors" }
21
+ syntax = { path = " ../libsyntax" }
22
+ smallvec = { version = " 1.0" , features = [" union" , " may_dangle" ] }
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ rustc_parse = { path = "../librustc_parse" }
20
20
syntax_pos = { path = " ../librustc_span" , package = " rustc_span" }
21
21
rustc_serialize = { path = " ../libserialize" , package = " serialize" }
22
22
rustc = { path = " ../librustc" }
23
+ rustc_ast_lowering = { path = " ../librustc_ast_lowering" }
23
24
rustc_incremental = { path = " ../librustc_incremental" }
24
25
rustc_traits = { path = " ../librustc_traits" }
25
26
rustc_data_structures = { path = " ../librustc_data_structures" }
Original file line number Diff line number Diff line change @@ -15,10 +15,11 @@ bitflags = "1.2.1"
15
15
log = " 0.4"
16
16
syntax = { path = " ../libsyntax" }
17
17
rustc_expand = { path = " ../librustc_expand" }
18
- rustc = { path = " ../librustc" }
19
18
arena = { path = " ../libarena" }
20
19
errors = { path = " ../librustc_errors" , package = " rustc_errors" }
21
20
syntax_pos = { path = " ../librustc_span" , package = " rustc_span" }
21
+ rustc = { path = " ../librustc" }
22
+ rustc_ast_lowering = { path = " ../librustc_ast_lowering" }
22
23
rustc_data_structures = { path = " ../librustc_data_structures" }
23
24
rustc_feature = { path = " ../librustc_feature" }
24
25
rustc_metadata = { path = " ../librustc_metadata" }
You can’t perform that action at this time.
0 commit comments