File tree Expand file tree Collapse file tree 5 files changed +4
-6
lines changed Expand file tree Collapse file tree 5 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -1927,7 +1927,6 @@ dependencies = [
1927
1927
" log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" ,
1928
1928
" parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" ,
1929
1929
" polonius-engine 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" ,
1930
- " proc_macro 0.0.0" ,
1931
1930
" rustc-rayon 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" ,
1932
1931
" rustc-rayon-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" ,
1933
1932
" rustc_apfloat 0.0.0" ,
@@ -2345,7 +2344,6 @@ dependencies = [
2345
2344
" flate2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" ,
2346
2345
" log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" ,
2347
2346
" memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" ,
2348
- " proc_macro 0.0.0" ,
2349
2347
" rustc 0.0.0" ,
2350
2348
" rustc_data_structures 0.0.0" ,
2351
2349
" rustc_errors 0.0.0" ,
@@ -2884,7 +2882,6 @@ version = "0.0.0"
2884
2882
dependencies = [
2885
2883
" fmt_macros 0.0.0" ,
2886
2884
" log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" ,
2887
- " proc_macro 0.0.0" ,
2888
2885
" rustc_data_structures 0.0.0" ,
2889
2886
" rustc_errors 0.0.0" ,
2890
2887
" rustc_target 0.0.0" ,
@@ -2974,6 +2971,7 @@ name = "test"
2974
2971
version = " 0.0.0"
2975
2972
dependencies = [
2976
2973
" getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" ,
2974
+ " proc_macro 0.0.0" ,
2977
2975
" term 0.0.0" ,
2978
2976
]
2979
2977
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ lazy_static = "1.0.0"
18
18
scoped-tls = { version = " 0.1.1" , features = [" nightly" ] }
19
19
log = { version = " 0.4" , features = [" release_max_level_info" , " std" ] }
20
20
polonius-engine = " 0.5.0"
21
- proc_macro = { path = " ../libproc_macro" }
22
21
rustc-rayon = " 0.1.1"
23
22
rustc-rayon-core = " 0.1.1"
24
23
rustc_apfloat = { path = " ../librustc_apfloat" }
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ crate-type = ["dylib"]
12
12
flate2 = " 1.0"
13
13
log = " 0.4"
14
14
memmap = " 0.6"
15
- proc_macro = { path = " ../libproc_macro" }
16
15
rustc = { path = " ../librustc" }
17
16
rustc_data_structures = { path = " ../librustc_data_structures" }
18
17
rustc_errors = { path = " ../librustc_errors" }
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ crate-type = ["dylib"]
10
10
11
11
[dependencies ]
12
12
fmt_macros = { path = " ../libfmt_macros" }
13
- proc_macro = { path = " ../libproc_macro" }
14
13
rustc_errors = { path = " ../librustc_errors" }
15
14
syntax = { path = " ../libsyntax" }
16
15
syntax_pos = { path = " ../libsyntax_pos" }
Original file line number Diff line number Diff line change @@ -11,3 +11,6 @@ crate-type = ["dylib", "rlib"]
11
11
[dependencies ]
12
12
getopts = " 0.2"
13
13
term = { path = " ../libterm" }
14
+
15
+ # not actually used but needed to always have proc_macro in the sysroot
16
+ proc_macro = { path = " ../libproc_macro" }
You can’t perform that action at this time.
0 commit comments