rskit-process 0.2.0-alpha.5

Process and subprocess execution with timeout and signal handling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Async subprocess execution runtime.

mod lifecycle;
mod observer;
mod output;
mod pipe_io;
#[cfg(unix)]
mod pty;
mod redaction;
mod run;
mod scope;
mod spawn;

pub use observer::{OutputBytesCallback, OutputObserver};
pub use run::run_with_cancel;