]> git.lizzy.rs Git - rust.git/blob - src/librustc_infer/Cargo.toml
Rollup merge of #71205 - NeoRaider:check_attr, r=jonas-schievink
[rust.git] / src / librustc_infer / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_infer"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_infer"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 graphviz = { path = "../libgraphviz" }
14 log = { version = "0.4", features = ["release_max_level_info", "std"] }
15 rustc_middle = { path = "../librustc_middle" }
16 rustc_data_structures = { path = "../librustc_data_structures" }
17 rustc_errors = { path = "../librustc_errors" }
18 rustc_hir = { path = "../librustc_hir" }
19 rustc_index = { path = "../librustc_index" }
20 rustc_macros = { path = "../librustc_macros" }
21 rustc_session = { path = "../librustc_session" }
22 rustc_span = { path = "../librustc_span" }
23 rustc_target = { path = "../librustc_target" }
24 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
25 rustc_ast = { path = "../librustc_ast" }