mirror of
https://github.com/valitydev/msgpack-erlang.git
synced 2024-11-06 00:35:24 +00:00
MessagePack (de)serializer implementation for Erlang / msgpack.org[Erlang]
be4880148e
new interface of unpacking: not compatible with 0.0.x - to be 0.1.0 |
||
---|---|---|
src | ||
test | ||
.gitignore | ||
.travis.yml | ||
LICENSE-2.0.txt | ||
Makefile | ||
README.rst | ||
rebar | ||
rebar.config |
################## MessagePack Erlang ################## .. image:: https://secure.travis-ci.org/msgpack/msgpack-erlang.png prequisites for runtime ----------------------- Erlang runtime system ( http://erlang.org/ ), >= R15B -- rebar won't work. rebar.config ------------ :: {deps, [ {msgpack, ".*", {git, "git://github.com/msgpack/msgpack-erlang.git", "master"}} ]}. Simple deserialization :: Ham = msgpack:pack(Spam), {ok, Spam} = msgpack:unpack(Ham). Stream deserialization :: {Term0, Rest0} = msgpack:unpack_stream(Binary), {Term1, Rest1} = msgpack:unpack_stream(Rest0), ... License ------- Apache License 2.0