A fast, zero-dependency MessagePack implementation written in Swift 3. Supports Apple platforms and Linux.
To use CocoaPods, add the following to your Podfile:
pod 'MessagePack.swift', '~> 2.1.0'
To use Carthage, add the following to your Cartfile:
github "a2/MessagePack.swift" >= 2.1.0
You can easily integrate MessagePack.swift in your app with SPM. Just add MessagePack.swift as a dependency:
import PackageDescription
let package = Package(
name: "MyAwesomeApp",
dependencies: [
.Package(url: "https://github.com/a2/MessagePack.swift.git", majorVersion: 2, minor: 1),
]
)
2.x supports Swift 3. Support for Swift 2 was dropped after 1.2.0.
Alexsander Akers, me@a2.io
MessagePack.swift is available under the MIT license. See the LICENSE file for more info.