2021-01-05 18:53:07 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_mir_dataflow"
|
|
|
|
version = "0.0.0"
|
2021-09-19 16:49:55 +00:00
|
|
|
edition = "2021"
|
2021-01-05 18:53:07 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
2021-01-05 18:53:07 +00:00
|
|
|
polonius-engine = "0.13.0"
|
|
|
|
regex = "1"
|
2024-10-28 03:38:33 +00:00
|
|
|
rustc_abi = { path = "../rustc_abi" }
|
2021-01-05 18:53:07 +00:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
2022-08-19 09:21:14 +00:00
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2023-04-16 12:33:00 +00:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2021-01-05 18:53:07 +00:00
|
|
|
rustc_graphviz = { path = "../rustc_graphviz" }
|
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
|
|
rustc_index = { path = "../rustc_index" }
|
2022-08-19 09:21:14 +00:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2021-01-05 18:53:07 +00:00
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
|
|
|
rustc_span = { path = "../rustc_span" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_target = { path = "../rustc_target" }
|
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
|
|
|
tracing = "0.1"
|
|
|
|
# tidy-alphabetical-end
|