net-esp-hosted: fix missing enabling defmt feature in heapless.

This commit is contained in:
Dario Nieuwenhuis 2024-05-15 22:28:51 +02:00
parent ea70b440cd
commit 17dde65ac2

View File

@ -9,6 +9,10 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/embassy-rs/embassy"
documentation = "https://docs.embassy.dev/embassy-net-esp-hosted"
[features]
defmt = [ "dep:defmt", "heapless/defmt-03" ]
log = [ "dep:log" ]
[dependencies]
defmt = { version = "0.3", optional = true }
log = { version = "0.4.14", optional = true }