]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_query_system/Cargo.toml
Rollup merge of #102241 - jyn514:manifest-json-docs, r=Mark-Simulacrum
[rust.git] / compiler / rustc_query_system / Cargo.toml
1 [package]
2 name = "rustc_query_system"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7 doctest = false
8
9 [dependencies]
10 parking_lot = "0.11"
11 rustc_arena = { path = "../rustc_arena" }
12 rustc_ast = { path = "../rustc_ast" }
13 rustc_data_structures = { path = "../rustc_data_structures" }
14 rustc_errors = { path = "../rustc_errors" }
15 rustc_feature = { path = "../rustc_feature" }
16 rustc_hir = { path = "../rustc_hir" }
17 rustc_index = { path = "../rustc_index" }
18 rustc_macros = { path = "../rustc_macros" }
19 rustc-rayon-core = { version = "0.4.0", optional = true }
20 rustc_serialize = { path = "../rustc_serialize" }
21 rustc_session = { path = "../rustc_session" }
22 rustc_span = { path = "../rustc_span" }
23 rustc_target = { path = "../rustc_target" }
24 rustc_type_ir = { path = "../rustc_type_ir" }
25 smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
26 thin-vec = "0.2.8"
27 tracing = "0.1"
28
29 [features]
30 rustc_use_parallel_compiler = ["rustc-rayon-core"]