2020-08-27 22:58:48 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_query_system"
|
|
|
|
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-08-03 08:05:26 -05:00
|
|
|
parking_lot = "0.12"
|
2023-10-19 21:37:29 -05:00
|
|
|
rustc-rayon-core = { version = "0.5.0", optional = true }
|
2020-11-14 09:35:31 -06:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2020-11-14 09:35:31 -06:00
|
|
|
rustc_feature = { path = "../rustc_feature" }
|
2023-04-16 07:33:00 -05:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2020-11-14 09:35:31 -06:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_index = { path = "../rustc_index" }
|
2020-11-14 09:35:31 -06:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
2020-11-12 13:48:37 -06:00
|
|
|
rustc_session = { path = "../rustc_session" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
2020-11-14 09:35:31 -06:00
|
|
|
rustc_target = { path = "../rustc_target" }
|
2022-06-26 17:48:55 -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
|
2024-07-15 11:40:06 -05:00
|
|
|
rustc_use_parallel_compiler = ["dep:rustc-rayon-core"]
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-end
|