blob: 16c4a850012b157817e628df4851ccb1449bfd3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[package]
name = "rustc_macros"
version = "0.1.0"
edition = "2021"
[lib]
proc-macro = true
[dependencies]
synstructure = "0.13.0"
# FIXME(Nilstrieb): Updating this causes changes in the diagnostics output.
syn = { version = "=2.0.8", features = ["full"] }
proc-macro2 = "1"
quote = "1"
|