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