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