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