Skip to content

Commit 1a262bf

Browse files
committed
Remove rustc_data_structures from the deps of librustc_front now
that we no longer use FnvHashMap
1 parent 418a118 commit 1a262bf

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

mk/crates.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ DEPS_rustc_driver := arena flate getopts graphviz libc rustc rustc_back rustc_bo
9696
rustc_typeck rustc_mir rustc_resolve log syntax serialize rustc_llvm \
9797
rustc_trans rustc_privacy rustc_lint rustc_front
9898

99-
DEPS_rustc_front := std syntax log serialize rustc_data_structures
99+
DEPS_rustc_front := std syntax log serialize
100100
DEPS_rustc_lint := rustc log syntax
101101
DEPS_rustc_llvm := native:rustllvm libc std rustc_bitflags
102102
DEPS_rustc_mir := rustc rustc_front syntax

src/librustc_front/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ extern crate syntax;
4545
#[macro_use]
4646
#[no_link]
4747
extern crate rustc_bitflags;
48-
extern crate rustc_data_structures;
4948

5049
extern crate serialize as rustc_serialize; // used by deriving
5150

0 commit comments

Comments
 (0)