rust/src/librustc_macros/Cargo.toml

16 lines
283 B
TOML
Raw Normal View History

2018-12-03 01:14:35 +01:00
[package]
name = "rustc_macros"
version = "0.1.0"
authors = ["The Rust Project Developers"]
2019-03-05 19:27:50 +01:00
edition = "2018"
2018-12-03 01:14:35 +01:00
[lib]
proc-macro = true
[dependencies]
synstructure = "0.10.2"
2018-12-03 01:14:35 +01:00
syn = { version = "0.15.22", features = ["full"] }
proc-macro2 = "0.4.24"
2019-03-05 19:27:50 +01:00
quote = "0.6.10"
itertools = "0.8"