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