From cfe8ab109760ebd81dc26ac878c3c92f91e1c228 Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Mon, 24 Jun 2024 22:20:06 +0200 Subject: [PATCH] Remove dummy feature since we do not test with async, which is a requirement for the example. --- Cargo.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 12f7762..063d190 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,8 +40,6 @@ panic-rtt-target = "0.1.3" [features] async = ["dep:embedded-hal-async"] -# Here just so `cargo test` doesn't invoke a build of the microbit-v2 example -microbit-example = [] [profile.release] lto = true @@ -50,4 +48,4 @@ lto = true name = "microbit-v2" test = false bench = false -required-features = ["async", "microbit-example"] +required-features = ["async"]