Skip to content

0.11.0

Compare
Choose a tag to compare
@dtolnay dtolnay released this 07 Apr 23:27
· 110 commits to master since this release
0.11.0
1752b18
  • 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.