forked from zalando-incubator/kube-ingress-aws-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
30 lines (28 loc) · 1.42 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
module github.com/zalando-incubator/kube-ingress-aws-controller
require (
github.com/aws/aws-sdk-go v1.24.6
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect
github.com/ghodss/yaml v1.0.0
github.com/go-playground/locales v0.12.1 // indirect
github.com/go-playground/universal-translator v0.0.0-20170327191703-71201497bace // indirect
github.com/golang/protobuf v0.0.0-20171113180720-1e59b77b52bf // indirect
github.com/google/uuid v0.0.0-20161128191214-064e2069ce9c
github.com/kr/pretty v0.1.0 // indirect
github.com/linki/instrumented_http v0.2.0
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/mweagle/go-cloudformation v0.0.0-20180525044411-e40a034597a3
github.com/pkg/errors v0.8.0
github.com/prometheus/client_golang v0.8.0
github.com/prometheus/client_model v0.0.0-20170216185247-6f3806018612 // indirect
github.com/prometheus/common v0.0.0-20171104095907-e3fb1a1acd76 // indirect
github.com/prometheus/procfs v0.0.0-20171017214025-a6e9df898b13 // indirect
github.com/sirupsen/logrus v1.4.1
github.com/stretchr/testify v1.2.2
golang.org/x/net v0.0.0-20190522155817-f3200d17e092 // indirect
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/go-playground/validator.v9 v9.19.0 // indirect
gopkg.in/yaml.v2 v2.2.2 // indirect
)
go 1.13