- Fix bug in
AsyncRead::split()
(#655). - Fix non-terminating loop in
length_delimited::FramedWrite
(#576).
- Documentation improvements
- Move
codec::{Encode, Decode, Framed*}
intotokio-codec
(#353)
- Add native endian builder fn to length_delimited (#144)
- Add AsyncRead::poll_read, AsyncWrite::poll_write (#170)
- Fix bug in
BytesCodec
andLinesCodec
. - Performance improvement to
split
.
- Use
FrameTooBig
as length delimited error type (#70). - Provide
Bytes
andLines
codecs (#78). - Provide
AllowStdIo
wrapper (#76).
- Fix bug involving zero sized writes in copy helper (#57).
- Add get / set accessors for length delimited max frame length setting. (#65).
- Add
Framed::into_parts_and_codec
(#59).
- Add
from_parts
andinto_parts
to the framing combinators. - Support passing an initialized buffer to the framing combinators.
- Add
length_adjustment
support to length delimited encoding (#48).
- Add some omitted
Self: Sized
bounds. - Add missing "inner" fns.
- Initial release