| 1 | [package] |
| 2 | authors = ["The Knurling-rs developers" ] |
| 3 | description = "defmt macros" |
| 4 | edition = "2021" |
| 5 | keywords = ["knurling" , "defmt" ] |
| 6 | license = "MIT OR Apache-2.0" |
| 7 | name = "defmt-macros" |
| 8 | readme = "README.md" |
| 9 | repository = "https://github.com/knurling-rs/defmt" |
| 10 | version = "1.0.1" |
| 11 | |
| 12 | [lib] |
| 13 | proc-macro = true |
| 14 | |
| 15 | [features] |
| 16 | # WARNING: for internal use only, not covered by semver guarantees |
| 17 | unstable-test = [] |
| 18 | |
| 19 | [dependencies] |
| 20 | defmt-parser = { version = "=1.0.0" , path = "../parser" } |
| 21 | proc-macro-error2 = "2" |
| 22 | proc-macro2 = "1" |
| 23 | quote = "1" |
| 24 | syn = { version = "2" , features = ["full" , "extra-traits" ] } |
| 25 | |
| 26 | [dev-dependencies] |
| 27 | maplit = "1" |
| 28 | pretty_assertions = "1" |
| 29 | rstest = { version = "0.19" , default-features = false } |
| 30 | |