about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-02-22 05:20:39 +0000
committerbors <bors@rust-lang.org>2016-02-22 05:20:39 +0000
commite628398f3464ef4bb60c3a05006064e1633e3d6f (patch)
treee698dda4fafd91e9c82f8e5d5207fd230ac0beb2 /src/libsyntax
parent19437bd452208899a611fa48f5157d2ee9820c35 (diff)
parent95761417c397f161d93e4df26ef1d1fc6da8cd69 (diff)
downloadrust-e628398f3464ef4bb60c3a05006064e1633e3d6f.tar.gz
rust-e628398f3464ef4bb60c3a05006064e1633e3d6f.zip
Auto merge of #31811 - alexcrichton:clean-deps, r=sanxiyn
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.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/Cargo.toml3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libsyntax/Cargo.toml b/src/libsyntax/Cargo.toml
index 3a1d18b85b6..f5ff7fbf610 100644
--- a/src/libsyntax/Cargo.toml
+++ b/src/libsyntax/Cargo.toml
@@ -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" }