A library for working with the Minecraft data types.
```rust use mcrw::MCReadExt;
let mut buf = [0x04, 0x6d, 0x63, 0x72, 0x77]; println!("{}", buf.asslice().readstring().unwrap()); // Prints "mcrw" ```
```rust use mcrw::MCWriteExt;
let mut vec = Vec::new(); vec.writevarint(42).unwrap(); vec.write_string("mcrw").unwrap(); ```