]> git.proxmox.com Git - rustc.git/blame - src/librustc_typeck/Cargo.toml
New upstream version 1.46.0~beta.2+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]
f035d41b 14rustc_arena = { path = "../librustc_arena" }
b7449926 15log = "0.4"
ba9703b0 16rustc_middle = { path = "../librustc_middle" }
74b04a01 17rustc_attr = { path = "../librustc_attr" }
476ff2be 18rustc_data_structures = { path = "../librustc_data_structures" }
dfeec247
XL
19rustc_errors = { path = "../librustc_errors" }
20rustc_hir = { path = "../librustc_hir" }
83c7162d 21rustc_target = { path = "../librustc_target" }
ba9703b0 22rustc_session = { path = "../librustc_session" }
60c5eb7d 23smallvec = { version = "1.0", features = ["union", "may_dangle"] }
74b04a01 24rustc_ast = { path = "../librustc_ast" }
dfeec247 25rustc_span = { path = "../librustc_span" }
e74abb32 26rustc_index = { path = "../librustc_index" }
74b04a01 27rustc_infer = { path = "../librustc_infer" }
ba9703b0 28rustc_trait_selection = { path = "../librustc_trait_selection" }