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 = [
19271927 " log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" ,
19281928 " parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" ,
19291929 " polonius-engine 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" ,
1930- " proc_macro 0.0.0" ,
19311930 " rustc-rayon 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" ,
19321931 " rustc-rayon-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" ,
19331932 " rustc_apfloat 0.0.0" ,
@@ -2345,7 +2344,6 @@ dependencies = [
23452344 " flate2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" ,
23462345 " log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" ,
23472346 " memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" ,
2348- " proc_macro 0.0.0" ,
23492347 " rustc 0.0.0" ,
23502348 " rustc_data_structures 0.0.0" ,
23512349 " rustc_errors 0.0.0" ,
@@ -2884,7 +2882,6 @@ version = "0.0.0"
28842882dependencies = [
28852883 " fmt_macros 0.0.0" ,
28862884 " log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" ,
2887- " proc_macro 0.0.0" ,
28882885 " rustc_data_structures 0.0.0" ,
28892886 " rustc_errors 0.0.0" ,
28902887 " rustc_target 0.0.0" ,
@@ -2974,6 +2971,7 @@ name = "test"
29742971version = " 0.0.0"
29752972dependencies = [
29762973 " getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" ,
2974+ " proc_macro 0.0.0" ,
29772975 " term 0.0.0" ,
29782976]
29792977
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ lazy_static = "1.0.0"
1818scoped-tls = { version = " 0.1.1" , features = [" nightly" ] }
1919log = { version = " 0.4" , features = [" release_max_level_info" , " std" ] }
2020polonius-engine = " 0.5.0"
21- proc_macro = { path = " ../libproc_macro" }
2221rustc-rayon = " 0.1.1"
2322rustc-rayon-core = " 0.1.1"
2423rustc_apfloat = { path = " ../librustc_apfloat" }
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ crate-type = ["dylib"]
1212flate2 = " 1.0"
1313log = " 0.4"
1414memmap = " 0.6"
15- proc_macro = { path = " ../libproc_macro" }
1615rustc = { path = " ../librustc" }
1716rustc_data_structures = { path = " ../librustc_data_structures" }
1817rustc_errors = { path = " ../librustc_errors" }
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ crate-type = ["dylib"]
1010
1111[dependencies ]
1212fmt_macros = { path = " ../libfmt_macros" }
13- proc_macro = { path = " ../libproc_macro" }
1413rustc_errors = { path = " ../librustc_errors" }
1514syntax = { path = " ../libsyntax" }
1615syntax_pos = { path = " ../libsyntax_pos" }
Original file line number Diff line number Diff line change @@ -11,3 +11,6 @@ crate-type = ["dylib", "rlib"]
1111[dependencies ]
1212getopts = " 0.2"
1313term = { 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