]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_query_impl/Cargo.toml
Rollup merge of #107725 - GuillaumeGomez:turn-markdownwithtoc-into-struct, r=notriddle
[rust.git] / compiler / rustc_query_impl / Cargo.toml
1 [package]
2 name = "rustc_query_impl"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7
8
9 [dependencies]
10 measureme = "10.0.0"
11 rustc_ast = { path = "../rustc_ast" }
12 rustc_data_structures = { path = "../rustc_data_structures" }
13 rustc_errors = { path = "../rustc_errors" }
14 rustc_hir = { path = "../rustc_hir" }
15 rustc_index = { path = "../rustc_index" }
16 rustc_macros = { path = "../rustc_macros" }
17 rustc_middle = { path = "../rustc_middle" }
18 rustc_query_system = { path = "../rustc_query_system" }
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 thin-vec = "0.2.9"
24 tracing = "0.1"
25
26 [features]
27 rustc_use_parallel_compiler = ["rustc-rayon-core", "rustc_query_system/rustc_use_parallel_compiler"]