This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
go.mod
57 lines (53 loc) · 2.35 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
module github.com/VoodooTeam/irsa-operator
go 1.15
require (
cloud.google.com/go v0.79.0 // indirect
github.com/Azure/go-autorest/autorest v0.11.18 // indirect
github.com/aws/aws-sdk-go v1.37.29
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
github.com/containerd/continuity v0.0.0-20200228182428-0f16d7a0959c // indirect
github.com/davecgh/go-spew v1.1.1
github.com/go-logr/logr v0.4.0
github.com/go-logr/stdr v0.3.0
github.com/go-logr/zapr v0.4.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/uuid v1.2.0 // indirect
github.com/googleapis/gnostic v0.5.4 // indirect
github.com/imdario/mergo v0.3.12 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/onsi/ginkgo v1.14.1
github.com/onsi/gomega v1.10.3
github.com/ory/dockertest/v3 v3.6.2
github.com/prometheus/client_golang v1.9.1-0.20210211201929-babeb356a51b // indirect
github.com/prometheus/procfs v0.6.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.16.0 // indirect
golang.org/x/oauth2 v0.0.0-20210311163135-5366d9dc1934 // indirect
golang.org/x/sys v0.0.0-20210309074719-68d13333faf2 // indirect
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
k8s.io/api v0.20.4
k8s.io/apiextensions-apiserver v0.20.4 // indirect
k8s.io/apimachinery v0.20.4
k8s.io/client-go v0.20.4
k8s.io/klog/v2 v2.6.0 // indirect
k8s.io/kube-openapi v0.0.0-20210305164622-f622666832c1 // indirect
k8s.io/utils v0.0.0-20210305010621-2afb4311ab10 // indirect
sigs.k8s.io/controller-runtime v0.8.3
sigs.k8s.io/structured-merge-diff/v4 v4.1.0 // indirect
)
replace (
github.com/apache/thrift/lib/go/thrift => github.com/apache/thrift/lib/go/thrift v0.13.0
github.com/aws/aws-sdk-go => github.com/aws/aws-sdk-go v1.37.29
github.com/miekg/dns => github.com/miekg/dns v1.1.25
github.com/nats-io/nats-server/v2 => github.com/nats-io/nats-server/v2 v2.1.9
golang.org/x/crypto => golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975 // CVE-2020-9283
golang.org/x/text => golang.org/x/text v0.3.3 // CVE-2018-1098
)
exclude (
github.com/apache/thrift v0.12.0
github.com/prometheus/common v0.18.0 // indirect
)