2019-04-12 16:12:13 +01:00
|
|
|
module github.com/thomseddon/traefik-forward-auth
|
|
|
|
|
2020-01-18 14:26:54 +00:00
|
|
|
go 1.13
|
2019-04-12 16:12:13 +01:00
|
|
|
|
|
|
|
require (
|
2020-01-18 14:26:54 +00:00
|
|
|
github.com/containous/traefik/v2 v2.1.2
|
2019-09-18 17:55:52 +01:00
|
|
|
github.com/coreos/go-oidc v2.1.0+incompatible
|
|
|
|
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
|
2020-01-18 14:26:54 +00:00
|
|
|
github.com/sirupsen/logrus v1.4.2
|
|
|
|
github.com/stretchr/testify v1.4.0
|
2019-05-13 11:56:43 +01:00
|
|
|
github.com/thomseddon/go-flags v1.4.1-0.20190507184247-a3629c504486
|
2019-09-18 17:55:52 +01:00
|
|
|
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
|
|
|
|
gopkg.in/square/go-jose.v2 v2.3.1
|
2019-04-12 16:12:13 +01:00
|
|
|
)
|
2020-01-18 14:26:54 +00:00
|
|
|
|
|
|
|
// From traefik
|
|
|
|
replace (
|
|
|
|
github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.4.1+incompatible
|
|
|
|
github.com/abbot/go-http-auth => github.com/containous/go-http-auth v0.4.1-0.20180112153951-65b0cdae8d7f
|
|
|
|
github.com/docker/docker => github.com/docker/engine v1.4.2-0.20191113042239-ea84732a7725
|
|
|
|
github.com/go-check/check => github.com/containous/check v0.0.0-20170915194414-ca0bf163426a
|
|
|
|
github.com/gorilla/mux => github.com/containous/mux v0.0.0-20181024131434-c33f32e26898
|
|
|
|
github.com/mailgun/minheap => github.com/containous/minheap v0.0.0-20190809180810-6e71eb837595
|
|
|
|
github.com/mailgun/multibuf => github.com/containous/multibuf v0.0.0-20190809014333-8b6c9a7e6bba
|
|
|
|
github.com/rancher/go-rancher-metadata => github.com/containous/go-rancher-metadata v0.0.0-20190402144056-c6a65f8b7a28
|
|
|
|
)
|