1#![no_std] 2 3extern crate alloc; 4 5mod kind; 6mod shared; 7mod weak; 8 9pub use kind::*; 10pub use shared::*; 11pub use weak::*;