blob: 987d3513438c09e201b51ab5232b096b97a6402f (
plain) (
blame)
1
2
3
4
5
6
7
|
MessagePack is an efficient binary serialization format, which lets you
exchange data among multiple languages like JSON, except that it's faster and
smaller. Small integers are encoded into a single byte and short strings
require only one extra byte in addition to the strings themselves.
This package provides C++ support. It is header-only and uses boost for all
the heavy lifting.
|