]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_query_system/Cargo.toml
New upstream version 1.60.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]
7doctest = false
8
9[dependencies]
10rustc_arena = { path = "../rustc_arena" }
11tracing = "0.1"
5099ac24 12rustc-rayon-core = "0.3.2"
c295e0f8 13rustc_ast = { path = "../rustc_ast" }
1b1a35ee
XL
14rustc_data_structures = { path = "../rustc_data_structures" }
15rustc_errors = { path = "../rustc_errors" }
c295e0f8
XL
16rustc_feature = { path = "../rustc_feature" }
17rustc_hir = { path = "../rustc_hir" }
1b1a35ee 18rustc_index = { path = "../rustc_index" }
c295e0f8 19rustc_macros = { path = "../rustc_macros" }
1b1a35ee 20rustc_serialize = { path = "../rustc_serialize" }
6a06907d 21rustc_session = { path = "../rustc_session" }
1b1a35ee 22rustc_span = { path = "../rustc_span" }
c295e0f8 23rustc_target = { path = "../rustc_target" }
1b1a35ee 24parking_lot = "0.11"
6a06907d 25smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }