This repository was archived by the owner on Nov 26, 2025. It is now read-only.
Releases: jeffective/lizpack
Releases · jeffective/lizpack
v0.8.0
v0.7.2
- Officially support zig 0.14.0
v0.7.1
- update due to breaking changes to zig master
v0.7.0
- adds
lizpack.manualfor finest possible control over encoding and decoding - renames
lizpack.Spectolizpack.spec
v0.6.0
- adds
encodeAlloc()API, which allocates as many bytes as needed to encode to MessagePack.
v0.5.1
- Fixes build on zig master have changes to
std.builtin.Type
v0.5.0
- Added support for encoding / decoding arrays of two-field structs as message pack maps. See examples for how to do it.
v0.4.1
- fixes default format of vectors, arrays of u8 to be
.str
v0.4.0
- removes encodeCustom / decodeCustom API in favor of
.{}in encode() / decode() function signatures - adds format customization for vectors, similar to arrays
- fixes bug in singed integer serialization
v0.3.0
- Added zero error encoding API via
encodeCustomBounded()which encodes into a bounded array.