From 1fb52089715631f4edb2abdc592547d0f5121161 Mon Sep 17 00:00:00 2001 From: Henry Gressmann Date: Mon, 4 Dec 2023 01:28:08 +0100 Subject: chore: ensure everything still runs on no_std Signed-off-by: Henry Gressmann --- crates/parser/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'crates/parser/src/lib.rs') diff --git a/crates/parser/src/lib.rs b/crates/parser/src/lib.rs index d91694b..3cc51d6 100644 --- a/crates/parser/src/lib.rs +++ b/crates/parser/src/lib.rs @@ -2,9 +2,8 @@ #![forbid(unsafe_code)] #![cfg_attr(not(feature = "std"), feature(error_in_core))] +mod std; extern crate alloc; -#[cfg(feature = "std")] -extern crate std; mod conversion; mod error; -- cgit v1.3.1