]> git.lizzy.rs Git - rust.git/blob - src/librustc_expand/Cargo.toml
Auto merge of #69474 - Dylan-DPC:rollup-ciotplu, r=Dylan-DPC
[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 rustc_ast_pretty = { path = "../librustc_ast_pretty" }
18 rustc_ast_passes = { path = "../librustc_ast_passes" }
19 rustc_attr = { path = "../librustc_attr" }
20 rustc_data_structures = { path = "../librustc_data_structures" }
21 rustc_errors = { path = "../librustc_errors" }
22 rustc_feature = { path = "../librustc_feature" }
23 rustc_lexer = { path = "../librustc_lexer" }
24 rustc_parse = { path = "../librustc_parse" }
25 rustc_session = { path = "../librustc_session" }
26 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
27 syntax = { path = "../libsyntax" }