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