You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
matterbridge/vendor/github.com/vmihailenco/msgpack/v5
..
msgpcode
.prettierrc
.travis.yml
CHANGELOG.md
LICENSE
Makefile
README.md
commitlint.config.js
decode.go
decode_map.go
decode_number.go
decode_query.go
decode_slice.go
decode_string.go
decode_typgen.go
decode_value.go
encode.go
encode_map.go
encode_number.go
encode_slice.go
encode_value.go
ext.go
intern.go
msgpack.go
package.json
safe.go
time.go
types.go
unsafe.go
version.go

README.md

MessagePack encoding for Golang

Build Status PkgGoDev Documentation Chat

msgpack is brought to you by uptrace/uptrace. Uptrace is an open source APM and blazingly fast distributed tracing tool powered by OpenTelemetry and ClickHouse. Give it a star as well!

Resources

Features

Installation

msgpack supports 2 last Go versions and requires support for Go modules. So make sure to initialize a Go module:

go mod init github.com/my/repo

And then install msgpack/v5 (note v5 in the import; omitting it is a popular mistake):

go get github.com/vmihailenco/msgpack/v5

Quickstart

import "github.com/vmihailenco/msgpack/v5"

func ExampleMarshal() {
    type Item struct {
        Foo string
    }

    b, err := msgpack.Marshal(&Item{Foo: "bar"})
    if err != nil {
        panic(err)
    }

    var item Item
    err = msgpack.Unmarshal(b, &item)
    if err != nil {
        panic(err)
    }
    fmt.Println(item.Foo)
    // Output: bar
}

See also

Contributors

Thanks to all the people who already contributed!