mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-08 22:30:41 +00:00
2.0 KiB
2.0 KiB
go-codec
This repository contains the go-codec library,
a High Performance and Feature-Rich Idiomatic encode/decode and rpc library for
- msgpack: https://github.com/msgpack/msgpack
- binc: http://github.com/ugorji/binc
- cbor: http://cbor.io http://tools.ietf.org/html/rfc7049
- json: http://json.org http://tools.ietf.org/html/rfc7159
For more information:
- see the codec/Readme for quick usage information
- view the API on godoc
- read the detailed usage/how-to primer
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.modcodec/0_importpath.go
If you have a fork and want to change the package path, you will need to modify the above files.