https://github.com/oleggator/msgpack-zig
MessagePack for Zig
https://github.com/oleggator/msgpack-zig
messagepack msgpack zig
Last synced: 7 months ago
JSON representation
MessagePack for Zig
- Host: GitHub
- URL: https://github.com/oleggator/msgpack-zig
- Owner: oleggator
- License: mit
- Created: 2020-07-11T17:05:57.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-25T16:04:29.000Z (over 4 years ago)
- Last Synced: 2024-11-08T16:45:06.576Z (7 months ago)
- Topics: messagepack, msgpack, zig
- Language: Zig
- Homepage:
- Size: 48.8 KB
- Stars: 16
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MessagePack for Zig
Based on [github.com/tarantool/msgpuck](https://github.com/tarantool/msgpuck).
## Stream API implementation progress
| Type | Encoding | Decoding |
|-------------------------|:-----------------------:|:--------:|
| generic | :white_check_mark: | |
| int (7-64 bit) | :white_check_mark: | |
| comptime int (7-64 bit) | :white_check_mark: | |
| float (32, 64 bit) | :white_check_mark: | |
| comptime float (64 bit) | :white_check_mark: | |
| bool | :white_check_mark: | |
| Optional | :white_check_mark: | |
| Struct | :white_check_mark: | |
| Pointer | :ballot_box_with_check: | |
| Map | :ballot_box_with_check: | |
| Array | :white_check_mark: | |
| Slice | :white_check_mark: | |
| Many | :white_check_mark: | |
| string | :white_check_mark: | |
| binary | :white_check_mark: | |
| extension | :white_check_mark: | |
| nil | :white_check_mark: | |- :white_check_mark: - implemented with unit tests
- :ballot_box_with_check: - implemented without unit tests