]> git.lizzy.rs Git - rust.git/blob - src/librustc_trait_selection/Cargo.toml
Rollup merge of #74409 - LukasKalbertodt:improve-debug-impl-of-socketaddr-ipaddr...
[rust.git] / src / librustc_trait_selection / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_trait_selection"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_trait_selection"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 rustc_parse_format = { path = "../librustc_parse_format" }
14 log = { package = "tracing", version = "0.1" }
15 rustc_attr = { path = "../librustc_attr" }
16 rustc_middle = { path = "../librustc_middle" }
17 rustc_ast = { path = "../librustc_ast" }
18 rustc_data_structures = { path = "../librustc_data_structures" }
19 rustc_errors = { path = "../librustc_errors" }
20 rustc_hir = { path = "../librustc_hir" }
21 rustc_index = { path = "../librustc_index" }
22 rustc_infer = { path = "../librustc_infer" }
23 rustc_macros = { path = "../librustc_macros" }
24 rustc_session = { path = "../librustc_session" }
25 rustc_span = { path = "../librustc_span" }
26 rustc_target = { path = "../librustc_target" }
27 smallvec = { version = "1.0", features = ["union", "may_dangle"] }