1 2 3 4 5 6 7 8 9 10 11
#![cfg(not(target_arch = "wasm32"))] //! Async process API and worker. //! //! This module reexports the [`async-process`](https://docs.rs/async-process) for convenience. #[cfg(ipc)] pub mod worker; #[doc(no_inline)] pub use async_process::*;