From 337bf84d1964ec3ffa91ee6840c15711cc1051b4 Mon Sep 17 00:00:00 2001 From: theoddgarlic Date: Tue, 2 Aug 2022 10:10:09 +0000 Subject: [PATCH] Add #![no_std] --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index c4493fa..880f23e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -8,6 +8,7 @@ //! ```text //! RUSTFLAGS='--cfg=ableOS' cargo build --target=wasm32-unknown-unknown //! ``` +#![no_std] #[macro_use] pub mod logger;