From 5a3f27599e71289f03d5d33a015ed18590325701 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Fri, 1 Apr 2022 16:12:53 +0200 Subject: [PATCH] specify the features that the actor-watermark example requires this way it won't be compiled by `cargo b --examples` it'll be compiled by 'cargo b --examples --features actor-watermark` --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 036dc6e99f..e999a2de6c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,6 +19,10 @@ version = "1.1.3" [lib] name = "rtic" +[[example]] +name = "actor-watermark" +required-features = ["memory-watermark"] + [dependencies] cortex-m = "0.7.0" cortex-m-rtic-macros = { path = "macros", version = "1.1.5" }