]> git.proxmox.com Git - rustc.git/blame - src/librustc_expand/Cargo.toml
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_expand / Cargo.toml
CommitLineData
e74abb32
XL
1[package]
2authors = ["The Rust Project Developers"]
dfeec247 3name = "rustc_expand"
e74abb32
XL
4version = "0.0.0"
5edition = "2018"
6build = false
7
8[lib]
dfeec247 9name = "rustc_expand"
e74abb32
XL
10path = "lib.rs"
11doctest = false
12
13[dependencies]
f035d41b 14rustc_serialize = { path = "../librustc_serialize" }
3dfed10e 15tracing = "0.1"
dfeec247 16rustc_span = { path = "../librustc_span" }
74b04a01 17rustc_ast_pretty = { path = "../librustc_ast_pretty" }
dfeec247 18rustc_ast_passes = { path = "../librustc_ast_passes" }
74b04a01 19rustc_attr = { path = "../librustc_attr" }
e74abb32 20rustc_data_structures = { path = "../librustc_data_structures" }
dfeec247 21rustc_errors = { path = "../librustc_errors" }
60c5eb7d 22rustc_feature = { path = "../librustc_feature" }
3dfed10e 23rustc_macros = { path = "../librustc_macros" }
e74abb32 24rustc_lexer = { path = "../librustc_lexer" }
60c5eb7d 25rustc_parse = { path = "../librustc_parse" }
dfeec247 26rustc_session = { path = "../librustc_session" }
60c5eb7d 27smallvec = { version = "1.0", features = ["union", "may_dangle"] }
74b04a01 28rustc_ast = { path = "../librustc_ast" }