Before history rewrite
Go to file
Ty dd996040e8 Update LICENSE.md 2014-09-18 13:30:55 -07:00
examples added basic test 2014-09-17 02:20:33 -07:00
src standardize to u64 2014-09-17 12:22:53 -07:00
.gitignore compiles without any features 2014-09-15 13:59:11 -07:00
.travis.yml compiles without any features 2014-09-15 13:59:11 -07:00
Cargo.toml renamed project to binary_encode 2014-09-17 02:12:26 -07:00
LICENSE.md Update LICENSE.md 2014-09-18 13:30:55 -07:00
README.md added link to api docs 2014-09-17 03:01:26 -07:00
readme.dev.md added link to api docs 2014-09-17 03:01:26 -07:00

README.md

Binary Encoder / Decoder

A compact encoder / decoder pair that uses an binary zero-fluff encoding scheme. The size of the encoded object will be the same or smaller than the size that the object takes up in memory in a running Rust program.

Api Documentation

Example

extern crate binary_encode;
extern crate serialize;

#[deriving(Encodable, Decodable, PartialEq)]
struct Entity {
    x: f32,
    y: f32,
}

#[deriving(Encodable, Decodable, PartialEq)]
struct World {
    entities: Vec<Entity>
}

fn main() {
    let world = World {
        entities: vec![Entity {x: 0.0, y: 4.0}, Entity {x: 10.0, y: 20.5}]
    };

    let encoded: Vec<u8> = binary_encode::encode(&world).unwrap();
    let decoded: World = binary_encode::decode(encoded).unwrap();

    assert!(world == decoded);
}