Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msgpack/msgpack-c
MessagePack implementation for C and C++ / msgpack.org[C/C++]
https://github.com/msgpack/msgpack-c
Last synced: about 1 month ago
JSON representation
MessagePack implementation for C and C++ / msgpack.org[C/C++]
- Host: GitHub
- URL: https://github.com/msgpack/msgpack-c
- Owner: msgpack
- License: other
- Created: 2012-07-04T01:46:16.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-11-02T02:43:32.000Z (2 months ago)
- Last Synced: 2024-12-01T13:50:27.448Z (about 1 month ago)
- Homepage:
- Size: 92.1 MB
- Stars: 3,029
- Watchers: 155
- Forks: 883
- Open Issues: 104
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: COPYING
Awesome Lists containing this project
- AwesomeCppGameDev - msgpack-c
- awesome-code-for-gamedev - msgpack/msgpack-c - MessagePack implementation for C and C++ / msgpack.org[C/C++] (Objects / Saving/Loading Objects, Compositing Packets)
README
`msgpack` for C/C++
===================It's like JSON but smaller and faster.
Overview
--------[MessagePack](http://msgpack.org/) 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.### C Library
See [c_master](https://github.com/msgpack/msgpack-c/tree/c_master)
### C++ Library
See [cpp_master](https://github.com/msgpack/msgpack-c/tree/cpp_master)
### Documentation
You can get additional information including the tutorial on the
[wiki](https://github.com/msgpack/msgpack-c/wiki).Contributing
------------`msgpack-c` is developed on GitHub at [msgpack/msgpack-c](https://github.com/msgpack/msgpack-c).
To report an issue or send a pull request, use the
[issue tracker](https://github.com/msgpack/msgpack-c/issues).Here's the list of [great contributors](https://github.com/msgpack/msgpack-c/graphs/contributors).
License
-------`msgpack-c` is licensed under the Boost Software License, Version 1.0. See
the [`LICENSE_1_0.txt`](./LICENSE_1_0.txt) file for details.