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