]> git.lizzy.rs Git - rust.git/blob - src/librustc_typeck/Cargo.toml
Auto merge of #57272 - petrochenkov:featrecov, r=estebank
[rust.git] / src / librustc_typeck / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_typeck"
4 version = "0.0.0"
5
6 [lib]
7 name = "rustc_typeck"
8 path = "lib.rs"
9 crate-type = ["dylib"]
10 test = false
11
12 [dependencies]
13 arena = { path = "../libarena" }
14 log = "0.4"
15 rustc = { path = "../librustc" }
16 rustc_data_structures = { path = "../librustc_data_structures" }
17 rustc_errors = { path = "../librustc_errors" }
18 rustc_platform_intrinsics = { path = "../librustc_platform_intrinsics" }
19 rustc_target = { path = "../librustc_target" }
20 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
21 syntax = { path = "../libsyntax" }
22 syntax_pos = { path = "../libsyntax_pos" }