]> git.lizzy.rs Git - rust.git/blob - src/librustc_traits/Cargo.toml
Auto merge of #73316 - Dylan-DPC:rollup-zgouwou, r=Dylan-DPC
[rust.git] / src / librustc_traits / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_traits"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_traits"
9 path = "lib.rs"
10
11 [dependencies]
12 log = { version = "0.4" }
13 rustc_middle = { path = "../librustc_middle" }
14 rustc_data_structures = { path = "../librustc_data_structures" }
15 rustc_hir = { path = "../librustc_hir" }
16 rustc_index = { path = "../librustc_index" }
17 rustc_ast = { path = "../librustc_ast" }
18 rustc_span = { path = "../librustc_span" }
19 chalk-ir = "0.10.0"
20 chalk-rust-ir = "0.10.0"
21 chalk-solve = "0.10.0"
22 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
23 rustc_infer = { path = "../librustc_infer" }
24 rustc_trait_selection = { path = "../librustc_trait_selection" }