2016-01-21 15:19:23 -08:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "rustc_mir"
|
|
|
|
version = "0.0.0"
|
2019-02-08 06:28:15 +09:00
|
|
|
edition = "2018"
|
2016-01-21 15:19:23 -08:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "rustc_mir"
|
|
|
|
path = "lib.rs"
|
|
|
|
crate-type = ["dylib"]
|
|
|
|
|
|
|
|
[dependencies]
|
2017-12-27 21:32:01 +01:00
|
|
|
arena = { path = "../libarena" }
|
2018-05-29 08:54:15 -03:00
|
|
|
either = "1.5.0"
|
2019-02-08 06:28:15 +09:00
|
|
|
dot = { path = "../libgraphviz", package = "graphviz" }
|
2018-01-07 16:54:05 +01:00
|
|
|
log = "0.4"
|
2017-12-12 17:14:49 +01:00
|
|
|
log_settings = "0.1.1"
|
2019-04-02 15:54:31 +02:00
|
|
|
polonius-engine = "0.7.0"
|
2016-01-21 15:19:23 -08:00
|
|
|
rustc = { path = "../librustc" }
|
2017-12-08 21:18:21 +02:00
|
|
|
rustc_target = { path = "../librustc_target" }
|
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" }
|
2018-11-29 08:52:22 +11:00
|
|
|
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
|