atap 0.1.0

Threadsafe futureless async runtime for macOS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Process
//! Tasks that run other programs, and the types they hand back

pub mod exit_status;
pub mod process;
pub mod process_task;
pub mod running;

pub use exit_status::{ExitStatus, ProcessOutput};
pub use process::Process;
pub use process_task::{OutputTask, StatusTask};
pub use running::{
    ChildOutput, ChildSignalTask, ChildStdin, ChildWaitTask, RunningChild, SpawnTask,
};