Lightweight and clean alternative to serde, focusing on writing to and from `Vec<u8>`s.
```rs
struct Thingy {
}
enum ThingyKind {
}
let thingy = Thingy {
}
let mut bytes = vec![];
thingy.write(&mut bytes);
```
Named after the cookie :)
[MIT license](/LICENSE)