io-process 0.0.2

Set of I/O-free coroutines and runtimes to manage processes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Collection of process I/O handlers.
//!
//! The I/O handler contains all the I/O logic. It takes input from
//! the coroutine, processes the requested I/O, then puts the output
//! back inside the coroutine.
//!
//! If you miss a handler matching your requirements, you can easily
//! implement your own by taking example on the existing ones. PRs are
//! welcomed!

#[cfg(feature = "std")]
pub mod std;
#[cfg(feature = "tokio")]
pub mod tokio;