21 lines
575 B
TOML
21 lines
575 B
TOML
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
name = "rustc_mir"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
name = "rustc_mir"
|
|
path = "lib.rs"
|
|
crate-type = ["dylib"]
|
|
|
|
[dependencies]
|
|
graphviz = { path = "../libgraphviz" }
|
|
log = { path = "../liblog" }
|
|
rustc = { path = "../librustc" }
|
|
rustc_back = { path = "../librustc_back" }
|
|
rustc_const_eval = { path = "../librustc_const_eval" }
|
|
rustc_const_math = { path = "../librustc_const_math" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_bitflags = { path = "../librustc_bitflags" }
|
|
syntax = { path = "../libsyntax" }
|