]> git.lizzy.rs Git - rust.git/commitdiff
proc_macro: move to a dependency of libtest.
authorEduard-Mihai Burtescu <edy.burt@gmail.com>
Tue, 20 Mar 2018 18:43:33 +0000 (20:43 +0200)
committerEduard-Mihai Burtescu <edy.burt@gmail.com>
Fri, 30 Nov 2018 04:15:20 +0000 (06:15 +0200)
Cargo.lock
src/librustc/Cargo.toml
src/librustc_metadata/Cargo.toml
src/libsyntax_ext/Cargo.toml
src/libtest/Cargo.toml

index d750f017172ddeb14331bdbbaa25934971aa098f..234485afa809fa40da08013778925612886d33d1 100644 (file)
@@ -1927,7 +1927,6 @@ dependencies = [
  "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
  "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)",
  "polonius-engine 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "proc_macro 0.0.0",
  "rustc-rayon 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  "rustc-rayon-core 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
  "rustc_apfloat 0.0.0",
@@ -2345,7 +2344,6 @@ dependencies = [
  "flate2 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
  "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
  "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
- "proc_macro 0.0.0",
  "rustc 0.0.0",
  "rustc_data_structures 0.0.0",
  "rustc_errors 0.0.0",
@@ -2884,7 +2882,6 @@ version = "0.0.0"
 dependencies = [
  "fmt_macros 0.0.0",
  "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
- "proc_macro 0.0.0",
  "rustc_data_structures 0.0.0",
  "rustc_errors 0.0.0",
  "rustc_target 0.0.0",
@@ -2974,6 +2971,7 @@ name = "test"
 version = "0.0.0"
 dependencies = [
  "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)",
+ "proc_macro 0.0.0",
  "term 0.0.0",
 ]
 
index d0ec8640ce9ef3edcf4a1e9aa07e42a64cbbf398..3316735de663e24fa757a2ba4571a926066b1fc2 100644 (file)
@@ -18,7 +18,6 @@ lazy_static = "1.0.0"
 scoped-tls = { version = "0.1.1", features = ["nightly"] }
 log = { version = "0.4", features = ["release_max_level_info", "std"] }
 polonius-engine = "0.5.0"
-proc_macro = { path = "../libproc_macro" }
 rustc-rayon = "0.1.1"
 rustc-rayon-core = "0.1.1"
 rustc_apfloat = { path = "../librustc_apfloat" }
index 276e2a911e6978966bef1d5857fd1b50d55af00c..337c87c24ba2b2ae0483d58576e722079fe86cbd 100644 (file)
@@ -12,7 +12,6 @@ crate-type = ["dylib"]
 flate2 = "1.0"
 log = "0.4"
 memmap = "0.6"
-proc_macro = { path = "../libproc_macro" }
 rustc = { path = "../librustc" }
 rustc_data_structures = { path = "../librustc_data_structures" }
 rustc_errors = { path = "../librustc_errors" }
index 5a691bde3ecb3c24886bccc936a7e5acbeaa4633..4979d0b3e92a4c4e2083c3c4eeaca4ea609fd7ba 100644 (file)
@@ -10,7 +10,6 @@ crate-type = ["dylib"]
 
 [dependencies]
 fmt_macros = { path = "../libfmt_macros" }
-proc_macro = { path = "../libproc_macro" }
 rustc_errors = { path = "../librustc_errors" }
 syntax = { path = "../libsyntax" }
 syntax_pos = { path = "../libsyntax_pos" }
index ec77f953380813b1d7a98fe1a1b7c507dbd84a0c..aade10ed6c3244fd8a97caa5fc72a858367feef5 100644 (file)
@@ -11,3 +11,6 @@ crate-type = ["dylib", "rlib"]
 [dependencies]
 getopts = "0.2"
 term = { path = "../libterm" }
+
+# not actually used but needed to always have proc_macro in the sysroot
+proc_macro = { path = "../libproc_macro" }