rust/src/librustc_mir/Cargo.toml

29 lines
836 B
TOML
Raw Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "rustc_mir"
version = "0.0.0"
2019-02-08 06:28:15 +09:00
edition = "2018"
[lib]
name = "rustc_mir"
path = "lib.rs"
crate-type = ["dylib"]
[dependencies]
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" }
log = "0.4"
log_settings = "0.1.1"
2019-04-02 15:54:31 +02:00
polonius-engine = "0.7.0"
rustc = { path = "../librustc" }
rustc_target = { path = "../librustc_target" }
rustc_data_structures = { path = "../librustc_data_structures" }
rustc_errors = { path = "../librustc_errors" }
2017-12-06 09:25:29 +01:00
serialize = { path = "../libserialize" }
syntax = { path = "../libsyntax" }
2016-06-27 17:45:33 +00:00
syntax_pos = { path = "../libsyntax_pos" }
byteorder = { version = "1.1", features = ["i128"] }
rustc_apfloat = { path = "../librustc_apfloat" }
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }