diff options
| author | bors <bors@rust-lang.org> | 2016-02-22 05:20:39 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2016-02-22 05:20:39 +0000 |
| commit | e628398f3464ef4bb60c3a05006064e1633e3d6f (patch) | |
| tree | e698dda4fafd91e9c82f8e5d5207fd230ac0beb2 /src/libsyntax | |
| parent | 19437bd452208899a611fa48f5157d2ee9820c35 (diff) | |
| parent | 95761417c397f161d93e4df26ef1d1fc6da8cd69 (diff) | |
| download | rust-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.toml | 3 |
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" } |
