Skip to content

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

License

Notifications You must be signed in to change notification settings

eliburke/MessagePack.swift

 
 

Repository files navigation

MessagePack.swift

CI Status Version License Platform

A fast, zero-dependency MessagePack implementation written in Swift 3. Supports Apple platforms and Linux.

Installation

CococaPods

To use CocoaPods, add the following to your Podfile:

pod 'MessagePack.swift', '~> 2.0.0'

SPM (Swift Package Manager)

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: 0),
    ]
)

Version

2.0.0 supports Swift 3. Support for Swift 2 was dropped after 1.2.0.

Xcode Support

As MessagePack.swift supports Swift Package Manager, you can develop the library in your text editor of choice. If you want to use Xcode, generate an Xcode projec with the following command:

$ swift package generate-xcodeproj

Authors

Alexsander Akers, [email protected]

License

MessagePack.swift is available under the MIT license. See the LICENSE file for more info.

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 98.9%
  • Other 1.1%