about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Woerister <michaelwoerister@posteo.net>2016-10-28 21:26:01 -0400
committerMichael Woerister <michaelwoerister@posteo.net>2016-10-30 19:14:18 -0400
commitbd1ce9124936e7e4fbca422f0a13c52e1516e93e (patch)
tree284b14972edbf517fa23f9d186dc69f5f9d961a7
parenta2a2763e6dcaf4b0e195e382d63aaf59402b7a45 (diff)
downloadrust-bd1ce9124936e7e4fbca422f0a13c52e1516e93e.tar.gz
rust-bd1ce9124936e7e4fbca422f0a13c52e1516e93e.zip
Add rustc_data_structures to rustc_driver dependencies.
-rw-r--r--mk/crates.mk2
-rw-r--r--src/Cargo.lock1
-rw-r--r--src/librustc_driver/Cargo.toml1
3 files changed, 3 insertions, 1 deletions
diff --git a/mk/crates.mk b/mk/crates.mk
index c7abf271e51..25192bfd27a 100644
--- a/mk/crates.mk
+++ b/mk/crates.mk
@@ -121,7 +121,7 @@ DEPS_rustc_driver := arena flate getopts graphviz libc rustc rustc_back rustc_bo
                      rustc_trans rustc_privacy rustc_lint rustc_plugin \
                      rustc_metadata syntax_ext proc_macro_plugin \
                      rustc_passes rustc_save_analysis rustc_const_eval \
-                     rustc_incremental syntax_pos rustc_errors proc_macro
+                     rustc_incremental syntax_pos rustc_errors proc_macro rustc_data_structures
 DEPS_rustc_errors := log libc serialize syntax_pos
 DEPS_rustc_lint := rustc log syntax syntax_pos rustc_const_eval
 DEPS_rustc_llvm := native:rustllvm libc std rustc_bitflags
diff --git a/src/Cargo.lock b/src/Cargo.lock
index 64c8ec10191..5826995cc3c 100644
--- a/src/Cargo.lock
+++ b/src/Cargo.lock
@@ -383,6 +383,7 @@ dependencies = [
  "rustc_back 0.0.0",
  "rustc_borrowck 0.0.0",
  "rustc_const_eval 0.0.0",
+ "rustc_data_structures 0.0.0",
  "rustc_errors 0.0.0",
  "rustc_incremental 0.0.0",
  "rustc_lint 0.0.0",
diff --git a/src/librustc_driver/Cargo.toml b/src/librustc_driver/Cargo.toml
index 98e2aa88189..99d3e155e89 100644
--- a/src/librustc_driver/Cargo.toml
+++ b/src/librustc_driver/Cargo.toml
@@ -18,6 +18,7 @@ rustc = { path = "../librustc" }
 rustc_back = { path = "../librustc_back" }
 rustc_borrowck = { path = "../librustc_borrowck" }
 rustc_const_eval = { path = "../librustc_const_eval" }
+rustc_data_structures = { path = "../librustc_data_structures" }
 rustc_errors = { path = "../librustc_errors" }
 rustc_incremental = { path = "../librustc_incremental" }
 rustc_lint = { path = "../librustc_lint" }