23 lines
612 B
TOML
23 lines
612 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]
|
|
bitflags = "1.0"
|
|
graphviz = { path = "../libgraphviz" }
|
|
log = "0.3"
|
|
rustc = { path = "../librustc" }
|
|
rustc_const_eval = { path = "../librustc_const_eval" }
|
|
rustc_const_math = { path = "../librustc_const_math" }
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
|
rustc_errors = { path = "../librustc_errors" }
|
|
serialize = { path = "../libserialize" }
|
|
syntax = { path = "../libsyntax" }
|
|
syntax_pos = { path = "../libsyntax_pos" }
|