]> git.lizzy.rs Git - rust.git/blob - src/librustc_resolve/Cargo.toml
Rollup merge of #67922 - Centril:lowering-cleanup, r=petrochenkov
[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 rustc_expand = { path = "../librustc_expand" }
18 arena = { path = "../libarena" }
19 errors = { path = "../librustc_errors", package = "rustc_errors" }
20 rustc_span = { path = "../librustc_span" }
21 rustc = { path = "../librustc" }
22 rustc_ast_lowering = { path = "../librustc_ast_lowering" }
23 rustc_data_structures = { path = "../librustc_data_structures" }
24 rustc_feature = { path = "../librustc_feature" }
25 rustc_hir = { path = "../librustc_hir" }
26 rustc_metadata = { path = "../librustc_metadata" }
27 rustc_error_codes = { path = "../librustc_error_codes" }
28 rustc_session = { path = "../librustc_session" }
29 smallvec = { version = "1.0", features = ["union", "may_dangle"] }