]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/Cargo.toml
Remove from compiler/ crates
[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.80.0"
11 either = "1.5.0"
12 gsgdt = "0.1.2"
13 polonius-engine = "0.13.0"
14 rand = "0.8.4"
15 rand_xoshiro = "0.6.0"
16 rustc_apfloat = { path = "../rustc_apfloat" }
17 rustc_arena = { path = "../rustc_arena" }
18 rustc_ast = { path = "../rustc_ast" }
19 rustc_attr = { path = "../rustc_attr" }
20 rustc_data_structures = { path = "../rustc_data_structures" }
21 rustc_errors = { path = "../rustc_errors" }
22 rustc_feature = { path = "../rustc_feature" }
23 rustc_graphviz = { path = "../rustc_graphviz" }
24 rustc_hir = { path = "../rustc_hir" }
25 rustc_index = { path = "../rustc_index" }
26 rustc_macros = { path = "../rustc_macros" }
27 rustc_query_system = { path = "../rustc_query_system" }
28 rustc-rayon-core = { version = "0.4.0", optional = true }
29 rustc-rayon = { version = "0.4.0", optional = true }
30 rustc_serialize = { path = "../rustc_serialize" }
31 rustc_session = { path = "../rustc_session" }
32 rustc_span = { path = "../rustc_span" }
33 rustc_target = { path = "../rustc_target" }
34 rustc_type_ir = { path = "../rustc_type_ir" }
35 smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
36 thin-vec = "0.2.8"
37 tracing = "0.1"
38
39 [features]
40 rustc_use_parallel_compiler = ["rustc-rayon", "rustc-rayon-core"]