From 1754f3d64e8608b220b9880ec35c8c5adfba2ede Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20Leegwater=20Sim=C3=B5es?= Date: Thu, 16 Nov 2023 01:37:28 +0100 Subject: [PATCH] Make the crate `no_std` --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 07b9ee9..1f6fbe5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,6 +5,7 @@ #![feature(allocator_api)] #![cfg_attr(docsrs, feature(doc_cfg))] #![cfg_attr(feature = "test", feature(test))] +#![no_std] extern crate alloc; extern crate core;