You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reduced compile times by adding #[inline(never)] to serde trait implementation
methods that are monomorphized per type (serializer and deserializer).
Added optional postbag_fast_compile mode that uses buffered visit_seq
instead of streaming visit_map for Full struct deserialization, further
reducing compile times at the cost of buffering struct data in memory.
Enable with RUSTFLAGS="--cfg postbag_fast_compile".