diff --git a/src/lib.rs b/src/lib.rs index ed41f04..7b9f860 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,9 +1,15 @@ +#![no_std] + pub fn add(left: usize, right: usize) -> usize { left + right } #[cfg(test)] mod tests { + + extern crate alloc; + + use alloc::string::String; use crate::{keysmash, scrunkly}; @@ -52,6 +58,7 @@ mod tests { } } +pub use keysmash::StateMachine as KeysmashChain; mod catgirl_nonsense; mod keysmash; mod scrunkly; \ No newline at end of file