- impl
Buf
andBufMut
forEither
(#225). - Add
Bytes::slice_ref
(#208).
- Add 128 bit number support behind a feature flag (#209).
- Implement
IntoBuf
for&mut [u8]
- Fix panic in
BytesMut
FromIterator
implementation. - Bytes: Recycle space when reserving space in vec mode (#197).
- Bytes: Add resize fn (#203).
- Make
Buf
andBufMut
usable as trait objects (#186). - impl BorrowMut for BytesMut (#185).
- Improve accessor performance (#195).
- Implement FromIterator for Bytes/BytesMut (#148).
- Add
advance
fn to Bytes/BytesMut (#166). - Add
unsplit
fn toBytesMut
(#162, #173). - Improvements to Bytes split fns (#92).
- Fix range bug in
Take::bytes
- Misc performance improvements
- Add extra
PartialEq
implementations. - Add
Bytes::with_capacity
- Implement
AsMut[u8]
forBytesMut
- 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