byteorder - async

This is a fork of byteorder with the addition of:

Installation

for futures::io toml byteorder_async = {version="1.2.0", features=["futures_async"] }

for tokio::io toml byteorder_async = {version="1.2.0", features=["tokio_async"] }

Basic async usage:

```rust use byteorder_async::ReaderToByteOrder;

let reader : io::AsyncRead = ...; // after the byteorder its the same calls. let byte = reader.byteorder().read_u8().await; ```

Note: Thre reason for the byte_order() call is because async fn is not supprted in traits yet.