[DEPRECATED] multicodec implementation in Go

The multicodec repo https://github.com/multiformats/multicodec/ links to a deprecated and archived repo for the go impl https://github.com/multiformats/go-multicodec/

Is there a replacement go impl somewhere? If not, what should make of the deprecated go-multicodec as the main multicodec repo still seem to be active as there are commits from as recent as 24 days ago.

Rather than using the stuff that the go-multicodecs provides, we have https://github.com/multiformats/multistream-select/ to negotiate stream and then things like multihashes (which use codes from the multicodec table). I think the deprecation came from the fact that it was effectively unused in our stack.

The main multicodec repo is used to maintable the csv table with the code assignments.

The question is, what do you want to use multicodecs for? go-multicodecs was useful to wrap different-encoder/decoders inside the same interface (i.e. to be able to switch from json to cbor in your code with minimal changes), but this functionality can be easily reproduced and some libraries (https://godoc.org/github.com/ugorji/go/codec) provide easy switching between most common formats too…