]> git.lizzy.rs Git - rust.git/blob - src/librustc_resolve/Cargo.toml
Rollup merge of #66789 - eddyb:mir-source-scope-local-data, r=oli-obk
[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 test = false
11 doctest = false
12
13 [dependencies]
14 bitflags = "1.2.1"
15 log = "0.4"
16 syntax = { path = "../libsyntax" }
17 syntax_expand = { path = "../libsyntax_expand" }
18 rustc = { path = "../librustc" }
19 arena = { path = "../libarena" }
20 errors = { path = "../librustc_errors", package = "rustc_errors" }
21 syntax_pos = { path = "../libsyntax_pos" }
22 rustc_data_structures = { path = "../librustc_data_structures" }
23 rustc_feature = { path = "../librustc_feature" }
24 rustc_metadata = { path = "../librustc_metadata" }
25 rustc_error_codes = { path = "../librustc_error_codes" }
26 smallvec = { version = "1.0", features = ["union", "may_dangle"] }