From 821924cddb2fe35b4b104dc0423bb17bdd524f64 Mon Sep 17 00:00:00 2001 From: Victoria Fischer Date: Mon, 18 Nov 2024 23:45:05 +0100 Subject: [PATCH] cargo: remove embassy from default features --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f4fc4f9..60c7fdf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ debug = true # Symbols are nice and they don't increase the size on Flash opt-level = "z" [features] -default = ["std", "embassy", "esp-idf-svc/native", "rmt", "smart-leds"] +default = ["std", "esp-idf-svc/native", "rmt", "smart-leds"] embedded-graphics = ["dep:embedded-graphics", "ws2812-esp32-rmt-driver/embedded-graphics-core"] smart-leds = ["dep:smart-leds", "dep:smart-leds-trait", "ws2812-esp32-rmt-driver/smart-leds-trait"]