| 1 | [package] |
| 2 | name = "divan-macros" |
| 3 | version = "0.1.21" |
| 4 | edition = "2021" |
| 5 | authors = ["Nikolai Vazquez" ] |
| 6 | license = "MIT OR Apache-2.0" |
| 7 | description = "Macros for Divan, a statistically-comfy benchmarking library." |
| 8 | repository = "https://github.com/nvzqz/divan" |
| 9 | homepage = "https://github.com/nvzqz/divan" |
| 10 | documentation = "https://docs.rs/divan-macros" |
| 11 | categories = ["development-tools::profiling" ] |
| 12 | keywords = ["benchmark" , "criterion" , "instrument" , "measure" , "performance" ] |
| 13 | readme = "../README.md" |
| 14 | |
| 15 | [lib] |
| 16 | proc-macro = true |
| 17 | |
| 18 | [dependencies] |
| 19 | proc-macro2 = "1" |
| 20 | quote = { version = "1" , default-features = false } |
| 21 | # Versions prior to *.18 fail to parse empty attribute metadata. |
| 22 | syn = { version = "^2.0.18" , default-features = false, features = ["full" , "clone-impls" , "parsing" , "printing" , "proc-macro" ] } |
| 23 | |
| 24 | [dev-dependencies] |
| 25 | divan = { workspace = true } |
| 26 | |