From b1620271fd5c6742267af0196d2dc4d6806660a3 Mon Sep 17 00:00:00 2001 From: Madeleyne Vaca Date: Mon, 7 Jul 2025 10:15:57 -0700 Subject: [PATCH] Add version limit to embedded-cfu-protocol import after breaking change There was a breaking change and minor version update (0.2.0) in embedded-cfu. While the necessary changes are integrated, limit version to 0.1.0 for the workspace in cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9ccb2ce3..2a40513a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ embassy-sync = { git = "https://github.com/embassy-rs/embassy" } embassy-time = { git = "https://github.com/embassy-rs/embassy" } embassy-time-driver = { git = "https://github.com/embassy-rs/embassy" } embedded-batteries-async = "0.1.0" -embedded-cfu-protocol = { git = "https://github.com/OpenDevicePartnership/embedded-cfu" } +embedded-cfu-protocol = { git = "https://github.com/OpenDevicePartnership/embedded-cfu", version = "0.1.0" } embedded-hal = "1.0" embedded-hal-async = "1.0" embedded-hal-nb = "1.0"