rust/compiler/rustc_mir/Cargo.toml

32 lines
988 B
TOML
Raw Normal View History

2020-08-28 03:58:48 +00:00
[package]
name = "rustc_mir"
version = "0.0.0"
edition = "2018"
[lib]
doctest = false
[dependencies]
either = "1.5.0"
2020-10-27 14:44:38 +00:00
gsgdt = "0.1.2"
polonius-engine = "0.13.0"
regex = "1"
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
tracing = "0.1"
rustc_apfloat = { path = "../rustc_apfloat" }
rustc_ast = { path = "../rustc_ast" }
2020-08-28 03:58:48 +00:00
rustc_attr = { path = "../rustc_attr" }
rustc_data_structures = { path = "../rustc_data_structures" }
rustc_errors = { path = "../rustc_errors" }
rustc_graphviz = { path = "../rustc_graphviz" }
2020-08-28 03:58:48 +00:00
rustc_hir = { path = "../rustc_hir" }
rustc_index = { path = "../rustc_index" }
rustc_infer = { path = "../rustc_infer" }
rustc_macros = { path = "../rustc_macros" }
rustc_middle = { path = "../rustc_middle" }
2020-08-28 03:58:48 +00:00
rustc_serialize = { path = "../rustc_serialize" }
rustc_session = { path = "../rustc_session" }
rustc_target = { path = "../rustc_target" }
rustc_trait_selection = { path = "../rustc_trait_selection" }
rustc_span = { path = "../rustc_span" }