From 93d3b01a73b66620f1df3ec6c5ad28215413c423 Mon Sep 17 00:00:00 2001 From: Blake Ramsdell Date: Mon, 13 Apr 2026 18:02:41 -0700 Subject: [PATCH] Update embassy-sync 0.7.2 -> 0.8.0 Required for compatibility with partition-manager from embedded-services, which now uses embassy-sync 0.8's RawMutex trait. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- examples/rt685s/Cargo.toml | 2 +- libs/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/rt685s/Cargo.toml b/examples/rt685s/Cargo.toml index 932fe42..d88d221 100644 --- a/examples/rt685s/Cargo.toml +++ b/examples/rt685s/Cargo.toml @@ -19,7 +19,7 @@ warnings = "deny" embassy-imxrt = { git = "https://github.com/OpenDevicePartnership/embassy-imxrt.git", default-features = false } partition-manager = { git = "https://github.com/OpenDevicePartnership/embedded-services.git", default-features = false } -embassy-sync = "0.7.2" +embassy-sync = "0.8.0" embassy-executor = "0.9.1" defmt = "1.0.1" diff --git a/libs/Cargo.toml b/libs/Cargo.toml index 350df9d..31ef758 100644 --- a/libs/Cargo.toml +++ b/libs/Cargo.toml @@ -20,7 +20,7 @@ manual_let_else = "deny" defmt = "0.3.7" defmt-or-log = { version = "0.2.2", default-features = false } embedded-storage-async = "0.4.1" -embassy-sync = "0.7.2" +embassy-sync = "0.8.0" log = "0.4" cortex-m = { version = "0.7.7" }