52 lines
2.4 KiB
Modula-2
52 lines
2.4 KiB
Modula-2
module github.com/ldez/traefik-certs-dumper/v2
|
|
|
|
go 1.12
|
|
|
|
require (
|
|
github.com/abronan/valkeyrie v0.0.0-20190419181538-ccf7df650fe4
|
|
github.com/cenkalti/backoff v2.1.1+incompatible // indirect
|
|
github.com/coreos/bbolt v1.3.2 // indirect
|
|
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e // indirect
|
|
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
|
|
github.com/cpuguy83/go-md2man v1.0.10 // indirect
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
|
|
github.com/docker/distribution v2.7.1+incompatible
|
|
github.com/fsnotify/fsnotify v1.4.7
|
|
github.com/go-acme/lego v2.5.0+incompatible
|
|
github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef // indirect
|
|
github.com/google/btree v1.0.0 // indirect
|
|
github.com/gorilla/websocket v1.4.0 // indirect
|
|
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0 // indirect
|
|
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
|
|
github.com/grpc-ecosystem/grpc-gateway v1.8.5 // indirect
|
|
github.com/hashicorp/go-msgpack v0.5.4 // indirect
|
|
github.com/hashicorp/go-uuid v1.0.1 // indirect
|
|
github.com/hashicorp/memberlist v0.1.3 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/jonboulle/clockwork v0.1.0 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
|
|
github.com/opencontainers/image-spec v1.0.1 // indirect
|
|
github.com/pascaldekloe/goe v0.1.0 // indirect
|
|
github.com/pkg/errors v0.8.1 // indirect
|
|
github.com/prometheus/client_golang v0.9.2 // indirect
|
|
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 // indirect
|
|
github.com/sirupsen/logrus v1.4.1 // indirect
|
|
github.com/soheilhy/cmux v0.1.4 // indirect
|
|
github.com/spf13/cobra v0.0.3
|
|
github.com/spf13/viper v1.3.2
|
|
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect
|
|
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
|
|
go.uber.org/atomic v1.3.2 // indirect
|
|
go.uber.org/multierr v1.1.0 // indirect
|
|
go.uber.org/zap v1.9.1 // indirect
|
|
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect
|
|
gopkg.in/square/go-jose.v2 v2.3.1 // indirect
|
|
)
|
|
|
|
replace (
|
|
github.com/ugorji/go => github.com/ugorji/go v1.1.2-0.20181022190402-e5e69e061d4f
|
|
github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8 => github.com/ugorji/go/codec v1.1.2-0.20181022190402-e5e69e061d4f
|
|
)
|