forked from Kong/kubernetes-ingress-controller
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
39 lines (35 loc) · 1.29 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
module github.com/kong/kubernetes-ingress-controller
go 1.15
require (
github.com/blang/semver v3.5.1+incompatible
github.com/eapache/channels v1.1.0
github.com/fatih/color v1.9.0
github.com/ghodss/yaml v1.0.0
github.com/hashicorp/go-memdb v1.2.0 // indirect
github.com/hashicorp/go-uuid v1.0.1
github.com/kong/deck v1.2.1
github.com/kong/go-kong v0.13.0
github.com/lithammer/dedent v1.1.0
github.com/mitchellh/mapstructure v1.3.1
github.com/prometheus/client_golang v1.7.1
github.com/sirupsen/logrus v1.6.0
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.7.0
github.com/stretchr/testify v1.5.1
github.com/tidwall/gjson v1.2.1
github.com/tidwall/match v1.0.1 // indirect
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/go-playground/pool.v3 v3.1.1
k8s.io/api v0.19.0
k8s.io/apimachinery v0.19.0
k8s.io/client-go v11.0.1-0.20190805182717-6502b5e7b1b5+incompatible
k8s.io/klog v1.0.0
knative.dev/networking v0.0.0-20200818151513-77f604177dc7
knative.dev/pkg v0.0.0-20200818021113-c451e3c37f5f
)
replace (
k8s.io/client-go => k8s.io/client-go v0.19.0
knative.dev/networking => github.com/Kong/networking v0.0.0-20200820130121-b71940c64af7
knative.dev/pkg => github.com/Kong/pkg v0.0.0-20200820125340-3493cae5c655
)