1[package]
2authors = ["The Knurling-rs developers"]
3description = "Parsing library for defmt format strings"
4edition = "2021"
5keywords = ["knurling", "defmt"]
6license = "MIT OR Apache-2.0"
7name = "defmt-parser"
8readme = "README.md"
9repository = "https://github.com/knurling-rs/defmt"
10version = "1.0.0"
11
12[dependencies]
13thiserror = "2"
14
15[dev-dependencies]
16rstest = { version = "0.19", default-features = false }
17
18[features]
19# DEPRECATED: noop, will be removed in 1.0
20unstable = []
21
22[package.metadata.docs.rs]
23rustdoc-args = [ "--cfg=docsrs" ]
24