]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_hir_typeck/Cargo.toml
Rollup merge of #107770 - notriddle:notriddle/br2nl, r=GuillaumeGomez
[rust.git] / compiler / rustc_hir_typeck / Cargo.toml
1 [package]
2 name = "rustc_hir_typeck"
3 version = "0.1.0"
4 edition = "2021"
5
6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8 [dependencies]
9 smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
10 tracing = "0.1"
11 rustc_ast = { path = "../rustc_ast" }
12 rustc_data_structures = { path = "../rustc_data_structures" }
13 rustc_errors = { path = "../rustc_errors" }
14 rustc_graphviz = { path = "../rustc_graphviz" }
15 rustc_index = { path = "../rustc_index" }
16 rustc_infer = { path = "../rustc_infer" }
17 rustc_hir = { path = "../rustc_hir" }
18 rustc_hir_analysis = { path = "../rustc_hir_analysis" }
19 rustc_hir_pretty = { path = "../rustc_hir_pretty" }
20 rustc_lint = { path = "../rustc_lint" }
21 rustc_middle = { path = "../rustc_middle" }
22 rustc_macros = { path = "../rustc_macros" }
23 rustc_serialize = { path = "../rustc_serialize" }
24 rustc_session = { path = "../rustc_session" }
25 rustc_span = { path = "../rustc_span" }
26 rustc_target = { path = "../rustc_target" }
27 rustc_trait_selection = { path = "../rustc_trait_selection" }
28 rustc_type_ir = { path = "../rustc_type_ir" }