2020-08-27 22:58:48 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_middle"
|
|
|
|
version = "0.0.0"
|
2021-09-19 11:49:55 -05:00
|
|
|
edition = "2021"
|
2020-08-27 22:58:48 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-start
|
2023-12-30 10:09:02 -06:00
|
|
|
bitflags = "2.4.1"
|
2024-03-21 05:11:44 -05:00
|
|
|
derivative = "2.2.0"
|
2021-01-05 12:53:07 -06:00
|
|
|
either = "1.5.0"
|
2023-02-07 01:32:30 -06:00
|
|
|
field-offset = "0.3.5"
|
2023-10-19 21:37:29 -05:00
|
|
|
gsgdt = "0.1.2"
|
2021-07-22 15:21:06 -05:00
|
|
|
polonius-engine = "0.13.0"
|
2023-10-19 21:37:29 -05:00
|
|
|
rustc-rayon = { version = "0.5.0", optional = true }
|
|
|
|
rustc-rayon-core = { version = "0.5.0", optional = true }
|
2023-07-18 14:22:56 -05:00
|
|
|
rustc_apfloat = "0.2.0"
|
2022-08-16 23:22:30 -05:00
|
|
|
rustc_arena = { path = "../rustc_arena" }
|
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2024-02-27 12:11:23 -06:00
|
|
|
rustc_ast_ir = { path = "../rustc_ast_ir" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_attr = { path = "../rustc_attr" }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
2023-10-19 21:37:29 -05:00
|
|
|
rustc_error_messages = { path = "../rustc_error_messages" } # Used for intra-doc links
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2022-08-16 23:22:30 -05:00
|
|
|
rustc_feature = { path = "../rustc_feature" }
|
2023-04-16 07:33:00 -05:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2021-01-05 12:53:07 -06:00
|
|
|
rustc_graphviz = { path = "../rustc_graphviz" }
|
2022-08-16 23:22:30 -05:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
2024-04-14 09:26:59 -05:00
|
|
|
rustc_hir_pretty = { path = "../rustc_hir_pretty" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_index = { path = "../rustc_index" }
|
2022-08-16 23:22:30 -05:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2024-05-15 21:37:42 -05:00
|
|
|
rustc_next_trait_solver = { path = "../rustc_next_trait_solver" }
|
2022-08-16 23:22:30 -05:00
|
|
|
rustc_query_system = { path = "../rustc_query_system" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
|
|
rustc_session = { path = "../rustc_session" }
|
2022-08-16 23:22:30 -05:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
|
|
|
rustc_target = { path = "../rustc_target" }
|
2020-11-18 09:37:10 -06:00
|
|
|
rustc_type_ir = { path = "../rustc_type_ir" }
|
2022-08-16 23:22:30 -05:00
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
2022-12-05 17:19:32 -06:00
|
|
|
thin-vec = "0.2.12"
|
2022-08-16 23:22:30 -05:00
|
|
|
tracing = "0.1"
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-end
|
2022-02-11 14:25:14 -06:00
|
|
|
|
|
|
|
[features]
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-start
|
2022-02-11 14:25:14 -06:00
|
|
|
rustc_use_parallel_compiler = ["rustc-rayon", "rustc-rayon-core"]
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-end
|