MessagePack
MessagePack copied to clipboard
A MessagePack encoder and decoder for Codable types
A simple model like this fails to encode and then decode successfully: ```swift struct Link: Codable { let url: URL } ``` This is because like `Date` and `Data` types,...
Add very naïve support for encoding objects that inherits from an already Codable class when both contain custom CodingKeys. (see my issue: https://github.com/Flight-School/MessagePack/issues/19 ) Tested on my own (private) code...
Hi! I have a bit of inheritance in my codable objects and MessagePack crashes when encoding one of these. I could simplify the code to reproduce the crash to this:...
It's disabled by default (to match existing behavior). When enabled, it will produce a deterministic output when MessagePackEncoder encodes keyed containers.