useasync_stdin::recv_from_stdin;// Run with `cargo run --example echo`
// Then start sending input to stdin to see it echoed back
#[tokio::main]
async fnmain(){letmut rx =recv_from_stdin(10);whileletSome(s)= rx.recv().await {println!("Received: {}", s);}}