]> git.lizzy.rs Git - rust.git/blob - src/librustc_typeck/Cargo.toml
Rollup merge of #67734 - XAMPPRocky:master, r=skade
[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 edition = "2018"
6
7 [lib]
8 name = "rustc_typeck"
9 path = "lib.rs"
10 test = false
11 doctest = false
12
13 [dependencies]
14 arena = { path = "../libarena" }
15 log = "0.4"
16 rustc = { path = "../librustc" }
17 rustc_data_structures = { path = "../librustc_data_structures" }
18 rustc_errors = { path = "../librustc_errors" }
19 rustc_hir = { path = "../librustc_hir" }
20 rustc_target = { path = "../librustc_target" }
21 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
22 syntax = { path = "../libsyntax" }
23 rustc_span = { path = "../librustc_span" }
24 rustc_index = { path = "../librustc_index" }