zng_task/
process.rs

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