Read from stdin over a Tokio channel
This is useful for interactive programs that read from stdin while waiting for other events to occur.
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;
async fn main() { let mut rx = recvfromstdin(10); while let Some(s) = rx.recv().await { println!("Received: {}", s); } } ```