streamweave_stdio/
lib.rs

1#![doc = include_str!("../README.md")]
2
3pub mod stderr_consumer;
4pub mod stdin_producer;
5pub mod stdout_consumer;
6
7pub use stderr_consumer::*;
8pub use stdin_producer::*;
9pub use stdout_consumer::*;