]> git.proxmox.com Git - rustc.git/blob - compiler/rustc_query_impl/Cargo.toml
New upstream version 1.74.1+dfsg1
[rustc.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 field-offset = "0.3.5"
11 measureme = "10.0.0"
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.5.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.12"
24 tracing = "0.1"
25
26 # Not used directly, but included to enable the unstable_offset_of feature
27 memoffset = { version = "0.9.0", features = ["unstable_offset_of"] }
28
29 [features]
30 rustc_use_parallel_compiler = ["rustc-rayon-core", "rustc_query_system/rustc_use_parallel_compiler"]