wait-timeout 0.2.1

A crate to wait on a child process with a timeout specified across Unix and Windows platforms.
Documentation
1
2
3
4
5
6
7
use std::io::{stdin, Read};

#[allow(unused_must_use)]
fn main() {
    let mut buffer: [u8; 32] = Default::default();
    stdin().read(&mut buffer);
}