- Include LICENSE in published crate.
- Make
read_message()
return an error on EOF, to match the behavior ofcapnp::serialize::read_message()
.
- Rename
read_message()
totry_read_message()
, for consistency withcapnp::serialize::try_read_message()
.
- Remove unneeded dependency on 'executor' feature of the future crate.
- Remove some requirements for 'static lifetimes.
- Use new capnp::serialize::SegmentLengthsBuilder API.
- Remove serialize::Transport.
- Switch to std::future::Future.
- Bump minimum supported rustc version to 1.39.0.
- Remove dependency on byteorder crate, in favor of from_le_bytes() and to_le_bytes().
- Update to 2018 edition.
- Update minimum required rustc version to 1.35.
- Call flush() after writing each message, to allow usage with a std::io::BufWriter wrapper.
- No changes -- just a version bump to match the rest of the capnp crates.
- Add
serialize::Transport
. - Update byteorder dependency.
- Add
WriteQueue
.
- Add
ReadStream
.
- Code pulled in from capnproto#66.