33 lines
1.3 KiB
Modula-2
33 lines
1.3 KiB
Modula-2
module github.com/ldez/traefik-certs-dumper/v2
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/abronan/valkeyrie v0.0.0-20190822142731-f2e1850dc905
|
|
github.com/containous/traefik/v2 v2.0.0-rc3
|
|
github.com/fsnotify/fsnotify v1.4.8-0.20190312181446-1485a34d5d57
|
|
github.com/go-acme/lego/v3 v3.0.2
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/spf13/cobra v0.0.5
|
|
github.com/spf13/viper v1.4.0
|
|
)
|
|
|
|
// related to valkeyrie
|
|
replace github.com/hashicorp/consul => github.com/hashicorp/consul v1.6.0
|
|
|
|
// related to Traefik
|
|
replace (
|
|
github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.4.1+incompatible
|
|
github.com/docker/docker => github.com/docker/engine v0.0.0-20190725163905-fa8dd90ceb7b
|
|
)
|
|
|
|
// related to Traefik: Containous forks
|
|
replace (
|
|
github.com/abbot/go-http-auth => github.com/containous/go-http-auth v0.4.1-0.20180112153951-65b0cdae8d7f
|
|
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
|
|
)
|