From fc133a712173ceda8366b65826d7432b3012f725 Mon Sep 17 00:00:00 2001 From: Broderick Carlin Date: Wed, 3 Jan 2024 23:05:30 -0600 Subject: [PATCH] fix: Fix build with latest embassy --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8d49a86..73405dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -embassy-stm32 = { git = "https://github.com/embassy-rs/embassy", features = ["defmt", "stm32f411re", "unstable-pac", "memory-x", "time-driver-any", "exti", "embedded-sdmmc", "chrono"] } +embassy-stm32 = { git = "https://github.com/embassy-rs/embassy", features = ["defmt", "stm32f411re", "unstable-pac", "memory-x", "time-driver-any", "exti", "chrono"] } embassy-executor = { git = "https://github.com/embassy-rs/embassy", features = ["nightly", "arch-cortex-m", "executor-thread", "executor-interrupt", "defmt", "integrated-timers"] } defmt = "0.3"