1[package] 2name = "proc-macro-hack-test" 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] 11path = "lib.rs" 12 13[dependencies] 14proc-macro-hack = "0.5" 15demo-hack-impl = { path = "demo-hack-impl" } 16 17[package.metadata.docs.rs] 18targets = ["x86_64-unknown-linux-gnu"] 19