]> git.lizzy.rs Git - rust.git/blob - src/librustc_expand/Cargo.toml
Auto merge of #67471 - nnethercote:revert-66405, r=nikomatsakis
[rust.git] / src / librustc_expand / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_expand"
4 version = "0.0.0"
5 edition = "2018"
6 build = false
7
8 [lib]
9 name = "rustc_expand"
10 path = "lib.rs"
11 doctest = false
12
13 [dependencies]
14 rustc_serialize = { path = "../libserialize", package = "serialize" }
15 log = "0.4"
16 rustc_span = { path = "../librustc_span" }
17 errors = { path = "../librustc_errors", package = "rustc_errors" }
18 rustc_data_structures = { path = "../librustc_data_structures" }
19 rustc_feature = { path = "../librustc_feature" }
20 rustc_lexer = { path = "../librustc_lexer" }
21 rustc_parse = { path = "../librustc_parse" }
22 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
23 syntax = { path = "../libsyntax" }