cppack
cppack copied to clipboard
A modern c++ implementation of the msgpack spec. - msgpack.org[C++17]
My types are as follow: struct RackInfoEntry { std::int16_t rack_number{ 0 }; std::uint16_t deck_level{ 0 }; bool irregular{ true }; std::uint32_t next_board_offset{ 0 }; std::uint32_t pos{ 0 }; std::uint32_t top_layer_height{...
I looked at 5 different C++ messagepack implementations, and I really like how this one looks. I read the developer's [blog post](https://mikeloomisgg.github.io/2019-07-02-making-a-serialization-library/) and generally agree with his decisions. But there's...