]> git.proxmox.com Git - rustc.git/blame - src/librustc_typeck/Cargo.toml
New upstream version 1.41.1+dfsg1
[rustc.git] / src / librustc_typeck / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_typeck"
4version = "0.0.0"
9fa01778 5edition = "2018"
7453a54e
SL
6
7[lib]
8name = "rustc_typeck"
9path = "lib.rs"
a7813a04 10test = false
416331ca 11doctest = false
7453a54e
SL
12
13[dependencies]
7453a54e 14arena = { path = "../libarena" }
b7449926 15log = "0.4"
7453a54e 16rustc = { path = "../librustc" }
476ff2be 17rustc_data_structures = { path = "../librustc_data_structures" }
9fa01778 18errors = { path = "../librustc_errors", package = "rustc_errors" }
83c7162d 19rustc_target = { path = "../librustc_target" }
60c5eb7d 20smallvec = { version = "1.0", features = ["union", "may_dangle"] }
b7449926 21syntax = { path = "../libsyntax" }
3157f602 22syntax_pos = { path = "../libsyntax_pos" }
e74abb32 23rustc_index = { path = "../librustc_index" }
60c5eb7d 24rustc_error_codes = { path = "../librustc_error_codes" }