2020-08-27 22:58:48 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_query_system"
|
|
|
|
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
|
2023-08-03 16:05:26 +03:00
|
|
|
parking_lot = "0.12"
|
2024-10-28 18:51:12 +01:00
|
|
|
rustc-rayon-core = { version = "0.5.0" }
|
2025-02-09 23:55:16 -08:00
|
|
|
rustc_abi = { path = "../rustc_abi" }
|
2020-11-14 16:35:31 +01:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2025-02-09 22:49:31 +01:00
|
|
|
rustc_attr_data_structures = { path = "../rustc_attr_data_structures" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2020-11-14 16:35:31 +01:00
|
|
|
rustc_feature = { path = "../rustc_feature" }
|
2023-04-16 14:33:00 +02:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2025-02-15 15:18:19 -05:00
|
|
|
rustc_hashes = { path = "../rustc_hashes" }
|
2020-11-14 16:35:31 +01:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_index = { path = "../rustc_index" }
|
2020-11-14 16:35:31 +01:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
2020-11-12 20:48:37 +01:00
|
|
|
rustc_session = { path = "../rustc_session" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
2022-06-27 08:48:55 +10:00
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
2022-08-17 14:22:30 +10:00
|
|
|
tracing = "0.1"
|
2023-10-20 13:37:29 +11:00
|
|
|
# tidy-alphabetical-end
|
2025-03-21 07:54:06 +01:00
|
|
|
|
|
|
|
[dependencies.hashbrown]
|
|
|
|
version = "0.15.2"
|
|
|
|
default-features = false
|
|
|
|
features = ["nightly"] # for may_dangle
|