]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/Cargo.toml
Rollup merge of #105597 - albertlarsan68:patch-1, r=Dylan-DPC
[rust.git] / compiler / rustc_middle / Cargo.toml
1 [package]
2 name = "rustc_middle"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7
8 [dependencies]
9 bitflags = "1.2.1"
10 chalk-ir = "0.87.0"
11 derive_more = "0.99.17"
12 either = "1.5.0"
13 gsgdt = "0.1.2"
14 polonius-engine = "0.13.0"
15 rustc_apfloat = { path = "../rustc_apfloat" }
16 rustc_arena = { path = "../rustc_arena" }
17 rustc_ast = { path = "../rustc_ast" }
18 rustc_attr = { path = "../rustc_attr" }
19 rustc_data_structures = { path = "../rustc_data_structures" }
20 rustc_errors = { path = "../rustc_errors" }
21 rustc_feature = { path = "../rustc_feature" }
22 rustc_graphviz = { path = "../rustc_graphviz" }
23 rustc_hir = { path = "../rustc_hir" }
24 rustc_index = { path = "../rustc_index" }
25 rustc_macros = { path = "../rustc_macros" }
26 rustc_query_system = { path = "../rustc_query_system" }
27 rustc-rayon-core = { version = "0.4.0", optional = true }
28 rustc-rayon = { version = "0.4.0", optional = true }
29 rustc_serialize = { path = "../rustc_serialize" }
30 rustc_session = { path = "../rustc_session" }
31 rustc_span = { path = "../rustc_span" }
32 rustc_target = { path = "../rustc_target" }
33 rustc_type_ir = { path = "../rustc_type_ir" }
34 smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
35 thin-vec = "0.2.9"
36 tracing = "0.1"
37
38 [features]
39 rustc_use_parallel_compiler = ["rustc-rayon", "rustc-rayon-core"]