]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_query_system/Cargo.toml
New upstream version 1.66.0+dfsg1
[rustc.git] / compiler / rustc_query_system / Cargo.toml
CommitLineData
1b1a35ee 1[package]
1b1a35ee
XL
2name = "rustc_query_system"
3version = "0.0.0"
c295e0f8 4edition = "2021"
1b1a35ee
XL
5
6[lib]
1b1a35ee
XL
7
8[dependencies]
f2b60f7d 9parking_lot = "0.11"
1b1a35ee 10rustc_arena = { path = "../rustc_arena" }
c295e0f8 11rustc_ast = { path = "../rustc_ast" }
1b1a35ee
XL
12rustc_data_structures = { path = "../rustc_data_structures" }
13rustc_errors = { path = "../rustc_errors" }
c295e0f8
XL
14rustc_feature = { path = "../rustc_feature" }
15rustc_hir = { path = "../rustc_hir" }
1b1a35ee 16rustc_index = { path = "../rustc_index" }
c295e0f8 17rustc_macros = { path = "../rustc_macros" }
f2b60f7d 18rustc-rayon-core = { version = "0.4.0", optional = true }
1b1a35ee 19rustc_serialize = { path = "../rustc_serialize" }
6a06907d 20rustc_session = { path = "../rustc_session" }
1b1a35ee 21rustc_span = { path = "../rustc_span" }
c295e0f8 22rustc_target = { path = "../rustc_target" }
f2b60f7d 23rustc_type_ir = { path = "../rustc_type_ir" }
064997fb 24smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
f2b60f7d
FG
25thin-vec = "0.2.8"
26tracing = "0.1"
5e7ed085
FG
27
28[features]
29rustc_use_parallel_compiler = ["rustc-rayon-core"]