ugorji / go

idiomatic codec and rpc lib for msgpack, cbor, json, etc. msgpack.org[Go]
MIT License
1.83k stars 294 forks source link

missing go.sum entry needed to verify package #381

Closed thinkerou closed 1 year ago

thinkerou commented 1 year ago

as the follow picture

image

add go.sum? thanks!

ugorji commented 1 year ago

For historical reasons, I have to maintain github.com/ugorji/go and github.com/ugorji/go/codec with a circular dependency (see #299 ).

Consequently, each module has to depend on the "to-be-defined" release tag first, then committed, then that commit tagged, before go.sum can be updated. Due to this, go.sum can only be defined by the users e.g. using a "go mod tidy" call after downloading.

For this reason, we don't include go.sum in the modules. I will add this to the FAQ.