bare_proc
bare_proc is a proc-macro that implements a parser-generator for the
BARE message format.
It relies on serde using
serde_bare to implement serialization.
Usage
Define you BARE schema in a .bare file:
type User struct {
name: str
key: data[128]
id: uint
}
Then in a corresponding Rust file:
bare_schema!;
which will expand roughly the following:
License
bare_proc is licensed under MIT.