]> git.proxmox.com Git - rustc.git/blame - src/libsyntax_expand/Cargo.toml
New upstream version 1.41.1+dfsg1
[rustc.git] / src / libsyntax_expand / Cargo.toml
CommitLineData
e74abb32
XL
1[package]
2authors = ["The Rust Project Developers"]
3name = "syntax_expand"
4version = "0.0.0"
5edition = "2018"
6build = false
7
8[lib]
9name = "syntax_expand"
10path = "lib.rs"
11doctest = false
12
13[dependencies]
e74abb32
XL
14rustc_serialize = { path = "../libserialize", package = "serialize" }
15log = "0.4"
e74abb32
XL
16syntax_pos = { path = "../libsyntax_pos" }
17errors = { path = "../librustc_errors", package = "rustc_errors" }
18rustc_data_structures = { path = "../librustc_data_structures" }
60c5eb7d 19rustc_feature = { path = "../librustc_feature" }
e74abb32 20rustc_lexer = { path = "../librustc_lexer" }
60c5eb7d
XL
21rustc_parse = { path = "../librustc_parse" }
22smallvec = { version = "1.0", features = ["union", "may_dangle"] }
e74abb32 23syntax = { path = "../libsyntax" }