1 2 3 4 5 6 7 8
#[cfg(all(not(loom), not(shuttle)))] mod core; #[cfg(loom)] mod loom; #[cfg(shuttle)] mod shuttle; #[cfg(all(not(loom), not(shuttle)))] mod test_library;