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.
16 lines
316 B
TOML
16 lines
316 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "syntax"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
name = "syntax"
|
|
path = "lib.rs"
|
|
crate-type = ["dylib"]
|
|
|
|
[dependencies]
|
|
serialize = { path = "../libserialize" }
|
|
term = { path = "../libterm" }
|
|
log = { path = "../liblog" }
|
|
rustc_bitflags = { path = "../librustc_bitflags" }
|