2016-01-21 15:19:23 -08:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_mir"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_mir"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2017-09-08 15:08:01 -04:00
|
|
|
bitflags = "1.0"
|
2016-01-21 15:19:23 -08:00
|
|
|
graphviz = { path = "../libgraphviz" }
|
2017-02-15 07:57:59 -08:00
|
|
|
log = "0.3"
|
2017-12-12 17:14:49 +01:00
|
|
|
log_settings = "0.1.1"
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc = { path = "../librustc" }
|
2016-03-30 13:43:36 +02:00
|
|
|
rustc_const_eval = { path = "../librustc_const_eval" }
|
2016-03-15 12:33:13 +01:00
|
|
|
rustc_const_math = { path = "../librustc_const_math" }
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc_data_structures = { path = "../librustc_data_structures" }
|
2017-07-03 17:25:03 +02:00
|
|
|
rustc_errors = { path = "../librustc_errors" }
|
2017-12-06 09:25:29 +01:00
|
|
|
serialize = { path = "../libserialize" }
|
2016-01-21 15:19:23 -08:00
|
|
|
syntax = { path = "../libsyntax" }
|
2016-06-27 17:45:33 +00:00
|
|
|
syntax_pos = { path = "../libsyntax_pos" }
|
2017-12-12 17:14:49 +01:00
|
|
|
byteorder = { version = "1.1", features = ["i128"] }
|
|
|
|
rustc_apfloat = { path = "../librustc_apfloat" }
|
2017-10-25 15:39:54 +02:00
|
|
|
rustc_trans_utils = { path = "../librustc_trans_utils" }
|