rustbuild: Sync some Cargo.toml/lib.rs dependencies

The standard library doesn't depend on rustc_bitflags, so move it to explicit
dependencies on all other crates. Additionally, the arena/fmt_macros deps could
be dropped from libsyntax.
This commit is contained in:
Alex Crichton
2016-02-21 09:49:13 -08:00
parent 28a3e8bb51
commit 95761417c3
12 changed files with 20 additions and 22 deletions

View File

@@ -9,8 +9,7 @@ path = "lib.rs"
crate-type = ["dylib"]
[dependencies]
arena = { path = "../libarena" }
fmt_macros = { path = "../libfmt_macros" }
serialize = { path = "../libserialize" }
term = { path = "../libterm" }
log = { path = "../liblog" }
rustc_bitflags = { path = "../librustc_bitflags" }