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
I'm quite new to Go and I have some issues with module dependencies in my project. While trying to figure out what's the problem I found out that in the go.mod of the go-jwks repository there are two (to me) suspect lines:
They are targeting the same module, but with different versions and on different package registries (github.com and gopkg.in). Furthermore (as far as I can see) the gopkg.in/square/go-jose.v2 is never user inside the code of the repository.
Is this intentional? Cause I think that this could be the problem that is breaking my code.
The text was updated successfully, but these errors were encountered:
I'm quite new to Go and I have some issues with module dependencies in my project. While trying to figure out what's the problem I found out that in the
go.mod
of thego-jwks
repository there are two (to me) suspect lines:They are targeting the same module, but with different versions and on different package registries (
github.com
andgopkg.in
). Furthermore (as far as I can see) thegopkg.in/square/go-jose.v2
is never user inside the code of the repository.Is this intentional? Cause I think that this could be the problem that is breaking my code.
The text was updated successfully, but these errors were encountered: