diff options
| author | mo khan <mo@mokhan.ca> | 2022-04-20 17:37:42 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2022-04-20 17:37:42 -0600 |
| commit | ed7a6333ed475b84f64dcf22e7318297867348d9 (patch) | |
| tree | d4b4ad13e5070966fa1549fbebaeb885920d70d9 /go.mod | |
| parent | 30fa85a7c2c482c0abe8fa0b8275d4766ac85aa0 (diff) | |
build a tiny oidc provider
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 20 |
1 files changed, 15 insertions, 5 deletions
@@ -1,10 +1,20 @@ -module git.mokhan.ca/xlgmokha/oauth +module mokhan.ca/xlgmokha/oauth go 1.18 require ( - github.com/davecgh/go-spew v1.1.0 // indirect - github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/stretchr/testify v1.7.1 // indirect - gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect + github.com/golang-jwt/jwt v3.2.2+incompatible + github.com/hashicorp/uuid v0.0.0-20160311170451-ebb0a03e909c + github.com/lestrrat-go/jwx/v2 v2.0.0-beta1 +) + +require ( + github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect + github.com/goccy/go-json v0.9.6 // indirect + github.com/lestrrat-go/blackmagic v1.0.1 // indirect + github.com/lestrrat-go/httpcc v1.0.1 // indirect + github.com/lestrrat-go/httprc v1.0.1 // indirect + github.com/lestrrat-go/iter v1.0.2 // indirect + github.com/lestrrat-go/option v1.0.0 // indirect + golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect ) |
