2020-08-27 22:58:48 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_passes"
|
|
|
|
version = "0.0.0"
|
2025-02-20 18:37:58 +00:00
|
|
|
edition = "2024"
|
2020-08-27 22:58:48 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-20 13:37:29 +11:00
|
|
|
# tidy-alphabetical-start
|
2024-10-27 20:38:33 -07:00
|
|
|
rustc_abi = { path = "../rustc_abi" }
|
2023-10-20 13:37:29 +11:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2025-02-05 11:18:18 -08:00
|
|
|
rustc_ast_lowering = { path = "../rustc_ast_lowering" }
|
2023-10-20 13:37:29 +11:00
|
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
2024-12-13 14:47:11 +01:00
|
|
|
rustc_attr_parsing = { path = "../rustc_attr_parsing" }
|
2020-08-27 22:58:48 -05:00
|
|
|
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" }
|
2023-10-20 13:37:29 +11:00
|
|
|
rustc_feature = { path = "../rustc_feature" }
|
2023-04-16 14:33:00 +02:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2023-10-20 13:37:29 +11:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_index = { path = "../rustc_index" }
|
2022-07-11 18:59:04 +01:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2023-10-20 13:37:29 +11:00
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
2024-03-12 07:00:01 +00:00
|
|
|
rustc_privacy = { path = "../rustc_privacy" }
|
2023-10-20 13:37:29 +11:00
|
|
|
rustc_session = { path = "../rustc_session" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
2023-10-20 13:37:29 +11:00
|
|
|
rustc_target = { path = "../rustc_target" }
|
2023-03-14 18:43:37 +00:00
|
|
|
rustc_trait_selection = { path = "../rustc_trait_selection" }
|
2023-10-20 13:37:29 +11:00
|
|
|
tracing = "0.1"
|
|
|
|
# tidy-alphabetical-end
|