forked from louketo/louketo-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
41 lines (39 loc) · 1.71 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
38
39
40
41
module github.com/louketo/louketo-proxy
require (
github.com/PuerkitoBio/purell v1.1.0
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
github.com/armon/go-proxyproto v0.0.0-20180202201750-5b7edb60ff5f
github.com/codegangsta/negroni v1.0.0 // indirect
github.com/coreos/go-oidc v0.0.0-20171020180921-e860bd55bfa7
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/elazarl/goproxy v0.0.0-20181111060418-2ce16c963a8a
github.com/etcd-io/bbolt v1.3.3
github.com/fsnotify/fsnotify v1.4.7
github.com/garyburd/redigo v1.6.0 // indirect
github.com/go-chi/chi v3.3.3+incompatible
github.com/gofrs/uuid v3.3.0+incompatible
github.com/jonboulle/clockwork v0.1.0 // indirect
github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348 // indirect
github.com/onsi/ginkgo v1.8.0 // indirect
github.com/onsi/gomega v1.5.0 // indirect
github.com/pkg/errors v0.8.1 // indirect
github.com/prometheus/client_golang v0.9.2
github.com/rs/cors v1.6.0
github.com/stretchr/testify v1.5.1
github.com/unrolled/secure v0.0.0-20181221173256-0d6b5bb13069
github.com/urfave/cli v0.0.0-20181029213200-b67dcf995b6a
go.etcd.io/bbolt v1.3.3 // indirect
go.uber.org/atomic v1.3.2 // indirect
go.uber.org/multierr v1.1.0 // indirect
go.uber.org/zap v1.9.1
golang.org/x/crypto v0.0.0-20190911031432-227b76d455e7
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
golang.org/x/sys v0.0.0-20200302083256-062a44052db1 // indirect
gopkg.in/bsm/ratelimit.v1 v1.0.0-20160220154919-db14e161995a // indirect
gopkg.in/redis.v4 v4.2.4
gopkg.in/resty.v1 v1.10.3
gopkg.in/yaml.v2 v2.2.2
)
go 1.13