change proc-macro debugging code to be feature gated
[power-instruction-analyzer.git] / power-instruction-analyzer-proc-macro / Cargo.toml
1 # SPDX-License-Identifier: LGPL-2.1-or-later
2 # See Notices.txt for copyright information
3 [package]
4 name = "power-instruction-analyzer-proc-macro"
5 version = "0.2.1"
6 authors = ["Jacob Lifshay <programmerjake@gmail.com>"]
7 edition = "2018"
8 license = "LGPL-2.1-or-later"
9 description = "procedural macros for power-instruction-analyzer"
10
11 [lib]
12 proc-macro = true
13
14 [dependencies]
15 quote = "1.0"
16 proc-macro2 = "1.0"
17 syn = { version = "1.0", features = ["full", "parsing", "extra-traits"] }
18
19 [features]
20 debug-proc-macro = []