bufferfish 0.1.0

Binary message utility library for Rust and TypeScript interop.
Documentation
1
2
3
4
5
6
7
8
9
use bufferfish::Encode;

#[derive(Encode, Debug)]
#[bufferfish("Hello, world!")]
struct Foo {
    bar: u8,
}

fn main() {}