2020-08-27 22:58:48 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_passes"
|
|
|
|
version = "0.0.0"
|
2021-09-19 12:49:55 -04:00
|
|
|
edition = "2021"
|
2020-08-27 22:58:48 -05:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tracing = "0.1"
|
2022-06-10 12:14:24 +09:00
|
|
|
itertools = "0.10.1"
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
|
|
|
rustc_attr = { path = "../rustc_attr" }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2022-04-25 18:02:43 -07:00
|
|
|
rustc_expand = { path = "../rustc_expand" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
2023-04-16 14:33:00 +02:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_index = { path = "../rustc_index" }
|
|
|
|
rustc_session = { path = "../rustc_session" }
|
|
|
|
rustc_target = { path = "../rustc_target" }
|
2022-07-11 18:59:04 +01:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2020-09-26 00:00:00 +00:00
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
2020-12-01 23:41:12 +01:00
|
|
|
rustc_lexer = { path = "../rustc_lexer" }
|
2021-03-14 14:39:13 -07:00
|
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
2021-07-29 12:00:41 -05:00
|
|
|
rustc_feature = { path = "../rustc_feature" }
|
2023-03-14 18:43:37 +00:00
|
|
|
rustc_trait_selection = { path = "../rustc_trait_selection" }
|