95761417c3
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.
22 lines
564 B
TOML
22 lines
564 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_metadata"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
name = "rustc_metadata"
|
|
path = "lib.rs"
|
|
crate-type = ["dylib"]
|
|
|
|
[dependencies]
|
|
flate = { path = "../libflate" }
|
|
log = { path = "../liblog" }
|
|
rbml = { path = "../librbml" }
|
|
rustc = { path = "../librustc" }
|
|
rustc_back = { path = "../librustc_back" }
|
|
rustc_bitflags = { path = "../librustc_bitflags" }
|
|
rustc_front = { path = "../librustc_front" }
|
|
rustc_llvm = { path = "../librustc_llvm" }
|
|
serialize = { path = "../libserialize" }
|
|
syntax = { path = "../libsyntax" }
|