bincode_ext 0.0.4

Types & functions to extend the functionality of bincode.
docs.rs failed to build bincode_ext-0.0.4
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: bincode_ext-0.0.7

Extentions for Bincode (Binary Encoder / Decoder)

Build Status

Example

extern crate bincode;
extern crate bincode_ext;

use bincode_ext::byte_order::Le;

#[derive(RustcEncodable, RustcDecodable, PartialEq)]
struct Foo {
	x: Le<u32>, // little endian
	y: u32,     // big endian, due to defaults in bincode
}