1[package]
2name = "profiling-procmacros"
3version = "1.0.16"
4authors = ["Philip Degarmo <aclysma@gmail.com>"]
5edition = "2018"
6description = "This crate provides a very thin abstraction over other profiler crates."
7license = "MIT OR Apache-2.0"
8readme = "../README.md"
9repository = "https://github.com/aclysma/profiling"
10homepage = "https://github.com/aclysma/profiling"
11keywords = ["performance", "profiling"]
12categories = ["development-tools::profiling"]
13rust-version = "1.65"
14
15[dependencies]
16quote = { version = "1.0", default-features = false }
17syn = { version = "2.0", features = ["full"] }
18
19[lib]
20proc-macro=true
21
22[features]
23profile-with-puffin = []
24profile-with-optick = []
25profile-with-superluminal = []
26profile-with-tracing = []
27profile-with-tracy = []
28