1#![no_std] 2#![doc = include_str!("../README.md")] 3 4extern crate alloc; 5 6mod string; 7mod slice; 8 9pub use string::*; 10pub use slice::*;