27 lines
794 B
TOML
27 lines
794 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"
|
|
log_settings = "0.1.1"
|
|
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" }
|
|
byteorder = { version = "1.1", features = ["i128"] }
|
|
rustc_apfloat = { path = "../librustc_apfloat" }
|
|
rustc_trans_utils = { path = "../librustc_trans_utils" }
|