Skip to content

Commit bd1ce91

Browse files
Add rustc_data_structures to rustc_driver dependencies.
1 parent a2a2763 commit bd1ce91

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

mk/crates.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ DEPS_rustc_driver := arena flate getopts graphviz libc rustc rustc_back rustc_bo
121121
rustc_trans rustc_privacy rustc_lint rustc_plugin \
122122
rustc_metadata syntax_ext proc_macro_plugin \
123123
rustc_passes rustc_save_analysis rustc_const_eval \
124-
rustc_incremental syntax_pos rustc_errors proc_macro
124+
rustc_incremental syntax_pos rustc_errors proc_macro rustc_data_structures
125125
DEPS_rustc_errors := log libc serialize syntax_pos
126126
DEPS_rustc_lint := rustc log syntax syntax_pos rustc_const_eval
127127
DEPS_rustc_llvm := native:rustllvm libc std rustc_bitflags

src/Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/librustc_driver/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ rustc = { path = "../librustc" }
1818
rustc_back = { path = "../librustc_back" }
1919
rustc_borrowck = { path = "../librustc_borrowck" }
2020
rustc_const_eval = { path = "../librustc_const_eval" }
21+
rustc_data_structures = { path = "../librustc_data_structures" }
2122
rustc_errors = { path = "../librustc_errors" }
2223
rustc_incremental = { path = "../librustc_incremental" }
2324
rustc_lint = { path = "../librustc_lint" }

0 commit comments

Comments
 (0)