Skip to content

Commit baba195

Browse files
committed
chore: update dependencies in Cargo.toml
1 parent 9d5526b commit baba195

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

aimdb-mqtt-connector/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ rumqttc = { version = "0.24", optional = true }
4242

4343
# Embassy runtime dependencies (no_std)
4444
# Note: These use the workspace's local embassy checkout to avoid conflicts
45-
embassy-executor = { path = "../_external/embassy/embassy-executor", optional = true }
46-
embassy-time = { path = "../_external/embassy/embassy-time", optional = true }
47-
embassy-sync = { path = "../_external/embassy/embassy-sync", optional = true }
48-
embassy-net = { path = "../_external/embassy/embassy-net", optional = true, features = [
45+
embassy-executor = { version = "0.9.1", path = "../_external/embassy/embassy-executor", optional = true }
46+
embassy-time = { version = "0.5.0", path = "../_external/embassy/embassy-time", optional = true }
47+
embassy-sync = { version = "0.7.2", path = "../_external/embassy/embassy-sync", optional = true }
48+
embassy-net = { version = "0.7.1", path = "../_external/embassy/embassy-net", optional = true, features = [
4949
"tcp",
5050
"dhcpv4",
5151
"medium-ethernet",
@@ -54,12 +54,12 @@ embassy-net = { path = "../_external/embassy/embassy-net", optional = true, feat
5454

5555
# MQTT library for Embassy (native embassy-net support!)
5656
# Using local checkout to match Embassy version
57-
mountain-mqtt = { path = "../_external/mountain-mqtt/mountain-mqtt", default-features = false, optional = true, features = [
57+
mountain-mqtt = { version = "0.2.0", path = "../_external/mountain-mqtt/mountain-mqtt", default-features = false, optional = true, features = [
5858
"embedded-io-async",
5959
"embedded-hal-async",
6060
"defmt",
6161
] }
62-
mountain-mqtt-embassy = { path = "../_external/mountain-mqtt/mountain-mqtt-embassy", optional = true }
62+
mountain-mqtt-embassy = { version = "0.2.0", path = "../_external/mountain-mqtt/mountain-mqtt-embassy", optional = true }
6363

6464
# Embedded utilities
6565
heapless = { workspace = true, optional = true }

0 commit comments

Comments
 (0)