filthy_rich/
lib.rs

1#[cfg(unix)]
2pub mod ipc;
3#[cfg(unix)]
4pub mod socket;
5#[cfg(unix)]
6pub mod utils;
7
8#[cfg(not(unix))]
9compile_error!("This crate only supports Unix targets!");