- Add serde support behind feature flag
- Add
extend_from_slice
onBytes
andBytesMut
- Add
truncate
andclear
onBytes
- Misc additional std trait implementations
- Misc performance improvements
- Fix Vec::advance_mut bug
- Bump minimum Rust version to 1.15
- Misc performance tweaks
- Misc performance tweaks
- Improved
Debug
implementation forBytes
- Avoid some incorrect assert panics
- Expose
buf
module and have most types available from there vs. root. - Implement
IntoBuf
forT: Buf
. - Add
FromBuf
andBuf::collect
. - Add iterator adapter for
Buf
. - Add scatter/gather support to
Buf
andBufMut
. - Add
Buf::chain
. - Reduce allocations on repeated calls to
BytesMut::reserve
. - Implement
Debug
for more types. - Remove
Source
in favor ofIntoBuf
. - Implement
Extend
forBytesMut
.
- Initial release