Releases: remoc-rs/postbag
Releases · remoc-rs/postbag
Release list
v0.4.3
v0.4.2
0.4.2
- Reduced compile times by adding
#[inline(never)]to serde trait implementation
methods that are monomorphized per type (serializer and deserializer). - Added optional
postbag_fast_compilemode that uses bufferedvisit_seq
instead of streamingvisit_mapfor Full struct deserialization, further
reducing compile times at the cost of buffering struct data in memory.
Enable withRUSTFLAGS="--cfg postbag_fast_compile".