forked from markbates/goth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
37 lines (34 loc) · 1.3 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module github.com/markbates/goth
go 1.18
require (
github.com/golang-jwt/jwt/v4 v4.5.0
github.com/gorilla/mux v1.8.1
github.com/gorilla/pat v1.0.2
github.com/gorilla/sessions v1.2.2
github.com/jarcoal/httpmock v1.3.1
github.com/lestrrat-go/jwx v1.2.29
github.com/markbates/going v1.0.3
github.com/mrjones/oauth v0.0.0-20190623134757-126b35219450
github.com/stretchr/testify v1.9.0
golang.org/x/oauth2 v0.21.0
)
require (
cloud.google.com/go/compute/metadata v0.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
github.com/goccy/go-json v0.10.3 // indirect
github.com/gorilla/context v1.1.2 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/lestrrat-go/backoff/v2 v2.0.8 // indirect
github.com/lestrrat-go/blackmagic v1.0.2 // indirect
github.com/lestrrat-go/httpcc v1.0.1 // indirect
github.com/lestrrat-go/iter v1.0.2 // indirect
github.com/lestrrat-go/option v1.0.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
golang.org/x/crypto v0.24.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)