prost-sled 0.0.5

Integration layer between prost and sled.
Documentation
# prost-sled: An integration layer between prost and sled

prost-sled makes it easy to use sled to store structure data (protobufs)
encoded using prost. It just abstracts away the boilerplate of having to
encode and decode them.

## Usage

prost-sled provides a wrapper around `sled::Db`: `ProtoDb`. This provides
methods of the same name as those on `sled::Db` except they work using structs
that implement `prost::Message` (the trait used by prost for protobuf
messages).

The `From` and `Into` traits are implemented both ways between `sled::Db` and
`ProtoDb` so it's really easy to convert between the two as needed.

## License

Licensed under either of

 * Apache License, Version 2.0
   ([LICENSE-APACHE]LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
 * MIT license
   ([LICENSE-MIT]LICENSE-MIT or http://opensource.org/licenses/MIT)

at your option.

## Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.