bert-rs
BERT (Binary ERlang Term) serializer
This crate provide access to serializing data to the special binary data format, which can be send to your Erlang programs. The implementation relies on the BERT and Erlang External Term Format specifications.
Using
Before you start working with this library you will need to add a link to the bert-rs library at your Cargo.toml file:
[]
= "0.2.0"
Example of using
The bert-rs crate provide a support for default Rust types and some additional, which have specified in BERT document. For any supported type of data which should be serialized you will pass into term_to_binary function:
extern crate bert;
extern crate serde;
;
License
The bert-rs published under BSD license. For more details read LICENSE file.