Add unittest
[platform/upstream/rust-proc-macro-hack.git] / Cargo.toml.orig
1 [package]
2 name = "proc-macro-hack"
3 version = "0.5.19"
4 authors = ["David Tolnay <dtolnay@gmail.com>"]
5 edition = "2018"
6 license = "MIT OR Apache-2.0"
7 description = "Procedural macros in expression position"
8 repository = "https://github.com/dtolnay/proc-macro-hack"
9 categories = ["development-tools::procedural-macro-helpers"]
10 readme = "README.md"
11
12 [lib]
13 proc-macro = true
14
15 [dev-dependencies]
16 demo-hack = { version = "0.0.5", path = "demo-hack" }
17 demo-hack-impl = { version = "0.0.5", path = "demo-hack-impl" }
18 quote = "1.0"
19 rustversion = "1.0"
20 syn = "1.0.5"
21 trybuild = "1.0"
22
23 [workspace]
24 members = ["demo-hack", "demo-hack-impl", "example", "nested"]
25
26 [package.metadata.docs.rs]
27 targets = ["x86_64-unknown-linux-gnu"]