Skip to content

Commit 9c5ea19

Browse files
committed
fix: enable aimdb-core/alloc by default in aimdb-knx-connector
The alloc feature was only enabled under the embassy-runtime feature flag, but cargo publish verification builds with no features active. This caused aimdb-core to be compiled without alloc, breaking compilation. Mirrors the pattern already used in aimdb-mqtt-connector where default = ["aimdb-core/alloc"] ensures aimdb-core always has alloc.
1 parent 89e4fec commit 9c5ea19

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

aimdb-knx-connector/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["knx", "knxnet-ip", "building-automation", "iot", "connector"]
1111
categories = ["network-programming", "embedded", "asynchronous"]
1212

1313
[features]
14-
default = []
14+
default = ["aimdb-core/alloc"]
1515
std = ["aimdb-core/std", "knx-pico/std", "thiserror"]
1616
tokio-runtime = ["std", "tokio", "uuid", "async-stream", "futures-util"]
1717
embassy-runtime = [

0 commit comments

Comments
 (0)