]> git.lizzy.rs Git - rust.git/blob - src/librustc_resolve/Cargo.toml
Rollup merge of #61441 - estebank:fn-call-in-match, r=varkor
[rust.git] / src / librustc_resolve / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_resolve"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_resolve"
9 path = "lib.rs"
10 crate-type = ["dylib"]
11 test = false
12
13 [dependencies]
14 bitflags = "1.0"
15 log = "0.4"
16 syntax = { path = "../libsyntax" }
17 rustc = { path = "../librustc" }
18 arena = { path = "../libarena" }
19 errors = { path = "../librustc_errors", package = "rustc_errors" }
20 syntax_pos = { path = "../libsyntax_pos" }
21 rustc_data_structures = { path = "../librustc_data_structures" }
22 rustc_metadata = { path = "../librustc_metadata" }
23 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }