]> git.proxmox.com Git - rustc.git/blame - src/librustc_query_system/Cargo.toml
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_query_system / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
ba9703b0 3name = "rustc_query_system"
7453a54e 4version = "0.0.0"
9fa01778 5edition = "2018"
7453a54e
SL
6
7[lib]
ba9703b0 8name = "rustc_query_system"
7453a54e 9path = "lib.rs"
416331ca 10doctest = false
7453a54e
SL
11
12[dependencies]
f035d41b 13rustc_arena = { path = "../librustc_arena" }
3dfed10e 14tracing = "0.1"
e74abb32 15rustc-rayon-core = "0.3.0"
7453a54e 16rustc_data_structures = { path = "../librustc_data_structures" }
dfeec247 17rustc_errors = { path = "../librustc_errors" }
3dfed10e 18rustc_macros = { path = "../librustc_macros" }
e74abb32 19rustc_index = { path = "../librustc_index" }
f035d41b 20rustc_serialize = { path = "../librustc_serialize" }
dfeec247 21rustc_span = { path = "../librustc_span" }
ba9703b0 22parking_lot = "0.10"
60c5eb7d 23smallvec = { version = "1.0", features = ["union", "may_dangle"] }