]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_query_system/Cargo.toml
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / compiler / rustc_query_system / Cargo.toml
CommitLineData
1b1a35ee
XL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_query_system"
4version = "0.0.0"
5edition = "2018"
6
7[lib]
8doctest = false
9
10[dependencies]
11rustc_arena = { path = "../rustc_arena" }
12tracing = "0.1"
6a06907d 13rustc-rayon-core = "0.3.1"
1b1a35ee
XL
14rustc_data_structures = { path = "../rustc_data_structures" }
15rustc_errors = { path = "../rustc_errors" }
16rustc_macros = { path = "../rustc_macros" }
17rustc_index = { path = "../rustc_index" }
18rustc_serialize = { path = "../rustc_serialize" }
6a06907d 19rustc_session = { path = "../rustc_session" }
1b1a35ee
XL
20rustc_span = { path = "../rustc_span" }
21parking_lot = "0.11"
6a06907d 22smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }