]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_traits/Cargo.toml
Rollup merge of #103439 - Nilstrieb:help-me-with-my-macro, r=estebank
[rust.git] / compiler / rustc_traits / Cargo.toml
1 [package]
2 name = "rustc_traits"
3 version = "0.0.0"
4 edition = "2021"
5
6 [dependencies]
7 tracing = "0.1"
8 rustc_attr = { path = "../rustc_attr" }
9 rustc_middle = { path = "../rustc_middle" }
10 rustc_data_structures = { path = "../rustc_data_structures" }
11 rustc_hir = { path = "../rustc_hir" }
12 rustc_index = { path = "../rustc_index" }
13 rustc_ast = { path = "../rustc_ast" }
14 rustc_span = { path = "../rustc_span" }
15 chalk-ir = "0.87.0"
16 chalk-engine = "0.87.0"
17 chalk-solve = "0.87.0"
18 smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
19 rustc_infer = { path = "../rustc_infer" }
20 rustc_trait_selection = { path = "../rustc_trait_selection" }