You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
go version go1.15 darwin/amd64
Steps to reproduce
$ go get -u github.com/perlin-network/noise
Fails at:
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
withgithub.com/oasisprotocol/ed25519
in go.mod should fix this issue.The text was updated successfully, but these errors were encountered: