Implements a stream of terminal resize events.
Whenever the user resizes their terminal, a notification is sent to the
application running in it. This crate provides those notifications in the
form of a stream.
```rust
let stream = tokio_terminal_resize::resizes().flatten_stream();
let prog = stream
tokio::run(prog);
```