2021-01-01 00:53:25 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_mir_transform"
|
|
|
|
version = "0.0.0"
|
2021-09-19 16:49:55 +00:00
|
|
|
edition = "2021"
|
2021-01-01 00:53:25 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
2022-11-18 09:18:32 +00:00
|
|
|
either = "1"
|
2024-02-23 13:37:47 +00:00
|
|
|
itertools = "0.12"
|
2024-10-28 04:34:49 +00:00
|
|
|
rustc_abi = { path = "../rustc_abi" }
|
2023-01-16 22:12:36 +00:00
|
|
|
rustc_arena = { path = "../rustc_arena" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2021-01-01 00:53:25 +00:00
|
|
|
rustc_attr = { path = "../rustc_attr" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_const_eval = { path = "../rustc_const_eval" }
|
2021-01-01 00:53:25 +00:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2021-01-01 00:53:25 +00:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
|
|
rustc_index = { path = "../rustc_index" }
|
2024-05-24 08:14:31 +00:00
|
|
|
rustc_infer = { path = "../rustc_infer" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2021-01-01 00:53:25 +00:00
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
2023-07-20 19:01:27 +00:00
|
|
|
rustc_mir_build = { path = "../rustc_mir_build" }
|
2021-01-05 18:53:07 +00:00
|
|
|
rustc_mir_dataflow = { path = "../rustc_mir_dataflow" }
|
2021-01-01 00:53:25 +00:00
|
|
|
rustc_session = { path = "../rustc_session" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
2021-01-01 00:53:25 +00:00
|
|
|
rustc_target = { path = "../rustc_target" }
|
|
|
|
rustc_trait_selection = { path = "../rustc_trait_selection" }
|
2024-07-04 04:43:37 +00:00
|
|
|
rustc_type_ir = { path = "../rustc_type_ir" }
|
2023-10-20 02:37:29 +00:00
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
|
|
|
tracing = "0.1"
|
|
|
|
# tidy-alphabetical-end
|