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