2021-01-05 19:53:07 +01:00
|
|
|
[package]
|
|
|
|
name = "rustc_mir_dataflow"
|
|
|
|
version = "0.0.0"
|
2021-09-19 12:49:55 -04:00
|
|
|
edition = "2021"
|
2021-01-05 19:53:07 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
polonius-engine = "0.13.0"
|
|
|
|
regex = "1"
|
2022-06-27 08:48:55 +10:00
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
2021-01-05 19:53:07 +01:00
|
|
|
tracing = "0.1"
|
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
2022-08-19 10:21:14 +01:00
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2023-04-16 14:33:00 +02:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2021-01-05 19:53:07 +01:00
|
|
|
rustc_graphviz = { path = "../rustc_graphviz" }
|
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
|
|
rustc_index = { path = "../rustc_index" }
|
2022-08-19 10:21:14 +01:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2021-01-05 19:53:07 +01:00
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
|
|
rustc_target = { path = "../rustc_target" }
|
|
|
|
rustc_span = { path = "../rustc_span" }
|