]> git.lizzy.rs Git - rust.git/blob - src/librustc_resolve/Cargo.toml
Auto merge of #68191 - simlay:add-tvSO-target, r=nagisa
[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 rustc_ast = { path = "../librustc_ast" }
17 arena = { path = "../libarena" }
18 rustc = { path = "../librustc" }
19 rustc_ast_lowering = { path = "../librustc_ast_lowering" }
20 rustc_ast_pretty = { path = "../librustc_ast_pretty" }
21 rustc_attr = { path = "../librustc_attr" }
22 rustc_data_structures = { path = "../librustc_data_structures" }
23 rustc_errors = { path = "../librustc_errors" }
24 rustc_expand = { path = "../librustc_expand" }
25 rustc_feature = { path = "../librustc_feature" }
26 rustc_hir = { path = "../librustc_hir" }
27 rustc_infer = { path = "../librustc_infer" }
28 rustc_metadata = { path = "../librustc_metadata" }
29 rustc_session = { path = "../librustc_session" }
30 rustc_span = { path = "../librustc_span" }
31 smallvec = { version = "1.0", features = ["union", "may_dangle"] }