Async-Stdin

github crates.io docs.rs build status

Read from stdin over a Tokio channel

This is useful for interactive programs that read from stdin while waiting for other events to occur.

Usage

Add this to your Cargo.toml:

toml [dependencies] async-stdin = "0.3.0"

You can read from stdin like so:

```rust use asyncstdin::recvfrom_stdin;

[tokio::main]

async fn main() { let mut rx = recvfromstdin(10); while let Some(s) = rx.recv().await { println!("Received: {}", s); } } ```