From 23a24d2700d804e0f719816d81ad6fe5c4385327 Mon Sep 17 00:00:00 2001 From: Masterchef365 Date: Sun, 31 Aug 2025 00:07:01 -0700 Subject: [PATCH] Add no_std support --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index a59e7c0..b9252b9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,6 @@ +#![no_std] +extern crate alloc; + mod bool_trie; mod tables;