From ba97093a69ba4f88f47e548556b99325cfb5c322 Mon Sep 17 00:00:00 2001 From: Sympatron GmbH <35803463+Sympatron@users.noreply.github.com> Date: Fri, 6 Dec 2024 16:23:04 +0100 Subject: [PATCH] Make no_std unconditional --- core/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/lib.rs b/core/src/lib.rs index 49ee1bd..e735e3c 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -95,7 +95,7 @@ //! implemented by disabling interrupts. The critical sections are very short, a few instructions at //! most, so they should make no difference to most applications. -#![cfg_attr(not(feature = "std"), no_std)] +#![no_std] #![deny(missing_docs)] #![deny(warnings)]