Ingen beskrivning

Ugorji Nwoke 2adff0894b go.mod should not define a go release version 6 år sedan
codec 74d13ae498 change repo name to go-codec and use import path and go.mod to ensure stable legacy import path. 6 år sedan
.travis.yml 2c86ab7577 codec: added go 1.11 to travis CI 7 år sedan
LICENSE 3561c62845 updated LICENSE 11 år sedan
README.md 74d13ae498 change repo name to go-codec and use import path and go.mod to ensure stable legacy import path. 6 år sedan
go.mod 2adff0894b go.mod should not define a go release version 6 år sedan
msgpack.org.md 6289abca10 codec: updated docs to reflect the correct API for client codec 12 år sedan

README.md

Sourcegraph Build Status codecov GoDoc rcard License

go-codec

This repository contains the go-codec library, a High Performance and Feature-Rich Idiomatic encode/decode and rpc library for

For more information:

Install using:

go get github.com/ugorji/go/codec

Import Path

The name of the github repo is being changed from go to go-codec. This clarifies that this repo is only for the go-codec.

However, this package has always had a stable import path of "github.com/ugorji/go/codec". We CANNOT change that without negatively affecting all our users.

Consequently, we enforce this import path by specifying it in the following files:

  • go.mod
  • codec/0_importpath.go

If you have a fork and want to change the package path, you will need to modify the above files.