1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Async-std specific process manipulation implementation.
mod child;
mod command;
mod outputs;

use arta::process::ProcessRuntime;
pub use child::*;
pub use command::*;
pub use outputs::*;

use crate::AsyncStdGlobalRuntime;

impl ProcessRuntime for AsyncStdGlobalRuntime {
    type Command = AsyncStdCommand;
    type Child = AsyncStdChild;
}