-
-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 698 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
authors = ["The Knurling-rs developers"]
description = "defmt macros"
edition = "2021"
keywords = ["knurling", "defmt"]
license = "MIT OR Apache-2.0"
name = "defmt-macros"
readme = "README.md"
repository = "https://github.com/knurling-rs/defmt"
version = "1.0.1"
[lib]
proc-macro = true
[features]
# WARNING: for internal use only, not covered by semver guarantees
unstable-test = []
[dependencies]
defmt-parser = { version = "=1.0.0", path = "../parser" }
proc-macro-error2 = "2"
proc-macro2 = "1"
quote = "1"
syn = { version = "2", features = ["full", "extra-traits"] }
[dev-dependencies]
maplit = "1"
pretty_assertions = "1"
rstest = { version = "0.19", default-features = false }