]> git.lizzy.rs Git - rust.git/blob - src/librustc_typeck/Cargo.toml
Rollup merge of #68856 - Centril:or-pat-ref-pat, r=matthewjasper
[rust.git] / src / librustc_typeck / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_typeck"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_typeck"
9 path = "lib.rs"
10 test = false
11 doctest = false
12
13 [dependencies]
14 arena = { path = "../libarena" }
15 log = "0.4"
16 rustc = { path = "../librustc" }
17 rustc_attr = { path = "../librustc_attr" }
18 rustc_data_structures = { path = "../librustc_data_structures" }
19 rustc_errors = { path = "../librustc_errors" }
20 rustc_hir = { path = "../librustc_hir" }
21 rustc_target = { path = "../librustc_target" }
22 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
23 syntax = { path = "../libsyntax" }
24 rustc_span = { path = "../librustc_span" }
25 rustc_index = { path = "../librustc_index" }