-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
36 lines (31 loc) · 1.01 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
module github.com/luizfonseca/traefik-github-oauth-plugin
go 1.21.4
require (
github.com/go-chi/render v1.0.3
github.com/golang-jwt/jwt/v4 v4.5.0
github.com/google/go-github/v49 v49.1.0
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/rs/xid v1.6.0
github.com/rs/zerolog v1.33.0
github.com/scylladb/go-set v1.0.2
github.com/spf13/cast v1.7.0
github.com/stretchr/testify v1.9.0
golang.org/x/oauth2 v0.22.0
)
require (
github.com/ajg/form v1.5.1 // indirect
github.com/ggicci/owl v0.8.2 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/ggicci/httpin v0.19.0
github.com/go-chi/chi/v5 v5.1.0
github.com/google/go-querystring v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/sys v0.19.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)