Issue adding Auth0 as dependency to my Swift package

I am adding Auth0.swift as dependency to my own package and have the strangest error:

product 'Auth0' required by package 'backend' target 'Backend' not found. Did you mean 'Auth0'?

Package URL is added as any other dependency:

but when enabled, it can’t be found:

1 Like

In case someone runs into this you need to specify it this way:

.product(name: "Auth0", package: "Auth0.swift")

Thanks for sharing @scott.champ ! :clap: