noise
noise copied to clipboard
ed25519 dependency link deprecated (module path has been changed)
go version go1.15 darwin/amd64
Steps to reproduce
-
$ go get -u github.com/perlin-network/noise
Fails at:
go get: github.com/oasislabs/[email protected] updating to
github.com/oasislabs/[email protected]: parsing go.mod:
module declares its path as: github.com/oasisprotocol/ed25519
but was required as: github.com/oasislabs/ed25519
Conclusion
Downloading the dependency solely using $ go get -u github.com/oasisprotocol/ed25519 works, while using the deprecated organization name results in the aforementioned error.
Replacing github.com/oasislabs/ed25519 with github.com/oasisprotocol/ed25519 in go.mod should fix this issue.
go version go1.15.2 darwin/amd64
Having the same issue but with a different error message.