bincode 1.0.0-alpha5

A binary serialization / deserialization strategy that uses Serde for transforming structs into bytes and vice versa!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
* 1.0.0
** Removed depricated rustc-serialize support
 Rustc-serialize was a stopgap until projects like Serde were able to catch up.
 With macros stabilization on its way, we are able to switch to serde without any
 big user-friendliness issues.  Major congratulations to Serde for coming this far!

** Moved Refbox, Strbox and Slicebox into a "refbox" module
 Refbox, Strbox and Slicebox are still an integral piece of bincode, but since
 they are mainly used by power-users, this move will make the crate API more organized
 and easier for new users to understand.

** Upgraded to Serde 0.9.*
 Serde 0.9.* gives us a better API surface area and allows use of procedural macros for
 deriving serialize and deserialize implemenetations.

** Moved serde functions into global module
 Since serde is the only supported serialization mechanism, it makes sense to have these
 functions available at the top level.