1[package] 2name = "demo-hack-impl" 3version = "0.0.0" 4authors = ["David Tolnay <dtolnay@gmail.com>"] 5license = "MIT OR Apache-2.0" 6description = "Demo of proc-macro-hack" 7repository = "https://github.com/dtolnay/proc-macro-hack" 8edition = "2018" 9 10[lib] 11proc-macro = true 12 13[dependencies] 14proc-macro-hack = "0.5" 15quote = "1.0" 16syn = { version = "1.0", features = ["full"] } 17proc-macro-error = { path = "../../../" } 18 19[package.metadata.docs.rs] 20targets = ["x86_64-unknown-linux-gnu"] 21