MessagePack.swift icon indicating copy to clipboard operation
MessagePack.swift copied to clipboard

It's like JSON, but fast and small…and Swift! – msgpack.org[Swift]

Results 7 MessagePack.swift issues
Sort by recently updated
recently updated
newest added
trafficstars

This is a lightweight support for Codable completed with tests. A few features are missing: 1. "codingPath" is missing in DecodingError.Context when decoding error is thrown 2. "userInfo" is not...

The pack is using a dictionary [MessagpackValue: MessagepackValue] so that when unpacking that value, it is not ordered like the original input value

When trying to import using SPM, I get the following in Xcode 11.3.1: The package dependency graph can not be resolved; unable find any available tag for the following requirements:...

**IOS app** is packing the data to send to **Linux Device** by this framework. Linux Device is unpacking by **mpack library**. When I used **Message pack v1.2.0 for Swift 2**,...

Hi, I am using MessagePack pod in my Swift project and it is great. However, currently it is quite painful to manually encode and decode my models. I have written...

Hey Alexsander, so I recently started adding the `Codable` protocol [conformance to my KDTree framework](https://github.com/Bersaelor/KDTree/pull/20). After I finished the conformance to `Encodable`/`Decodable` and tested it with Apples `JSONEncoder` and `PropertyListEncoder`...