Releases: serde-rs/bytes
Releases · serde-rs/bytes
0.11.5
- Allow Cow<[u8]> and Cow<Bytes> to deserialize from owned bytes (#23)
0.11.3
- Documentation improvement (#17, thanks @djc)
0.11.0
- The definition of Bytes has changed from
struct Bytes<'a>(&'a [u8])
to struct Bytes([u8])
which makes it work more like str, [u8], Path, CStr etc. This makes it possible to use Cow<Bytes> for example.
0.10.5
- Update documentation examples to 2018 edition
0.10.4
- Accept
T: ?Sized
in serde_bytes::serialize
0.10.3
- Updates to documentation only.
0.10.2
- Implement Deserialize for Bytes (#5, thanks @hcpl)