diff options
| -rw-r--r-- | embassy-nxp/Cargo.toml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/embassy-nxp/Cargo.toml b/embassy-nxp/Cargo.toml index cf36a67ec..031cd4aba 100644 --- a/embassy-nxp/Cargo.toml +++ b/embassy-nxp/Cargo.toml | |||
| @@ -10,8 +10,11 @@ critical-section = "1.1.2" | |||
| 10 | embassy-hal-internal = { version = "0.2.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-2"] } | 10 | embassy-hal-internal = { version = "0.2.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-2"] } |
| 11 | embassy-sync = { version = "0.6.2", path = "../embassy-sync" } | 11 | embassy-sync = { version = "0.6.2", path = "../embassy-sync" } |
| 12 | lpc55-pac = "0.5.0" | 12 | lpc55-pac = "0.5.0" |
| 13 | defmt = "0.3.8" | 13 | defmt = { version = "0.3.8", optional = true } |
| 14 | 14 | ||
| 15 | [features] | 15 | [features] |
| 16 | default = ["rt"] | 16 | default = ["rt"] |
| 17 | rt = ["lpc55-pac/rt"] \ No newline at end of file | 17 | rt = ["lpc55-pac/rt"] |
| 18 | |||
| 19 | ## Enable [defmt support](https://docs.rs/defmt) and enables `defmt` debug-log messages and formatting in embassy drivers. | ||
| 20 | defmt = ["dep:defmt", "embassy-hal-internal/defmt", "embassy-sync/defmt"] | ||
