1#![no_std] 2 3extern crate alloc; 4 5pub use allocator::{Pid, PidAllocator}; 6 7pub mod allocator; 8 9#[cfg(test)] 10mod tests;