binary-layout 1.0.1

The binary-layout library allows type-safe, inplace, zero-copy access to structured binary data. You define a custom data layout and give it a slice of binary data, and it will allow you to read and write the fields defined in the layout from the binary data without having to copy any of the data. It's similar to transmuting to/from a `#[repr(packed)]` struct, but much safer.
Documentation
1.0.1 (unreleased)
------

1.0.0
------
- Add Code Coverage to CI
- Improve documentation

0.3.0
------
- Improve README.md
- Improve documentation
- More unit tests
- Fix clippy lints
- Add View::into_storage()

0.2.0
------
- Improve README.md
- Add LICENSE files

0.1.0
------
- Initial version