]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_typeck/Cargo.toml
New upstream version 1.60.0+dfsg1
[rustc.git] / compiler / rustc_typeck / Cargo.toml
CommitLineData
1b1a35ee 1[package]
1b1a35ee
XL
2name = "rustc_typeck"
3version = "0.0.0"
c295e0f8 4edition = "2021"
1b1a35ee
XL
5
6[lib]
7test = false
8doctest = false
9
10[dependencies]
11rustc_arena = { path = "../rustc_arena" }
12tracing = "0.1"
13rustc_macros = { path = "../rustc_macros" }
14rustc_middle = { path = "../rustc_middle" }
15rustc_attr = { path = "../rustc_attr" }
16rustc_data_structures = { path = "../rustc_data_structures" }
17rustc_errors = { path = "../rustc_errors" }
5099ac24 18rustc_graphviz = { path = "../rustc_graphviz" }
1b1a35ee
XL
19rustc_hir = { path = "../rustc_hir" }
20rustc_hir_pretty = { path = "../rustc_hir_pretty" }
21rustc_target = { path = "../rustc_target" }
22rustc_session = { path = "../rustc_session" }
6a06907d 23smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
1b1a35ee
XL
24rustc_ast = { path = "../rustc_ast" }
25rustc_span = { path = "../rustc_span" }
26rustc_index = { path = "../rustc_index" }
27rustc_infer = { path = "../rustc_infer" }
28rustc_trait_selection = { path = "../rustc_trait_selection" }
cdc7bbd5 29rustc_ty_utils = { path = "../rustc_ty_utils" }
94222f64 30rustc_lint = { path = "../rustc_lint" }
5099ac24 31rustc_serialize = { path = "../rustc_serialize" }