Remove rustc_data_structures from the deps of librustc_front now

that we no longer use FnvHashMap
This commit is contained in:
Niko Matsakis 2015-11-18 05:10:38 -05:00
parent e303c250f1
commit 0bc61402a9
2 changed files with 1 additions and 2 deletions

View File

@ -96,7 +96,7 @@ DEPS_rustc_driver := arena flate getopts graphviz libc rustc rustc_back rustc_bo
rustc_typeck rustc_mir rustc_resolve log syntax serialize rustc_llvm \
rustc_trans rustc_privacy rustc_lint rustc_front
DEPS_rustc_front := std syntax log serialize rustc_data_structures
DEPS_rustc_front := std syntax log serialize
DEPS_rustc_lint := rustc log syntax
DEPS_rustc_llvm := native:rustllvm libc std rustc_bitflags
DEPS_rustc_mir := rustc rustc_front syntax

View File

@ -45,7 +45,6 @@ extern crate syntax;
#[macro_use]
#[no_link]
extern crate rustc_bitflags;
extern crate rustc_data_structures;
extern crate serialize as rustc_serialize; // used by deriving