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.
21 lines
354 B
TOML
21 lines
354 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_llvm"
|
|
version = "0.0.0"
|
|
build = "build.rs"
|
|
|
|
[lib]
|
|
name = "rustc_llvm"
|
|
path = "lib.rs"
|
|
crate-type = ["dylib"]
|
|
|
|
[features]
|
|
static-libstdcpp = []
|
|
|
|
[dependencies]
|
|
rustc_bitflags = { path = "../librustc_bitflags" }
|
|
|
|
[build-dependencies]
|
|
build_helper = { path = "../build_helper" }
|
|
gcc = "0.3"
|