]> git.proxmox.com Git - rustc.git/blob - src/librustc_typeck/Cargo.toml
New upstream version 1.34.2+dfsg1
[rustc.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 crate-type = ["dylib"]
11 test = 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 errors = { path = "../librustc_errors", package = "rustc_errors" }
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" }