forked from knative/eventing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gopkg.toml
111 lines (94 loc) · 3.14 KB
/
Gopkg.toml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
required = [
"k8s.io/apimachinery/pkg/util/sets/types",
"k8s.io/code-generator/cmd/deepcopy-gen",
"k8s.io/code-generator/cmd/defaulter-gen",
"k8s.io/code-generator/cmd/client-gen",
"k8s.io/code-generator/cmd/lister-gen",
"k8s.io/code-generator/cmd/informer-gen",
"github.com/knative/test-infra/scripts",
"github.com/knative/test-infra/tools/dep-collector",
]
[prune]
go-tests = true
unused-packages = true
non-go = true
[[prune.project]]
name = "k8s.io/code-generator"
unused-packages = false
non-go = false
[[prune.project]]
name = "github.com/knative/test-infra"
non-go = false
# TODO why is this overridden?
[[override]]
name = "gopkg.in/yaml.v2"
version = "v2.2.1"
# TODO(https://github.com/knative/eventing/issues/1065): if we get to update k8s.io to > 1.13, we can remove
# k8s-dynamic-fake-simple.patch in ./hack/update-deps.sh
#
# Overridden to ensure compatibility with GKE
# GKE version as of 2019-01-24 is 1.11
# controller-runtime 0.1.9 requires at least 1.12
[[override]]
name = "k8s.io/api"
version = "kubernetes-1.12.6"
# Overridden to ensure compatibility with GKE
# GKE version as of 2019-01-24 is 1.11
# controller-runtime 0.1.9 requires at least 1.12
[[override]]
name = "k8s.io/apimachinery"
version = "kubernetes-1.12.6"
# Overridden to ensure compatibility with GKE
# GKE version as of 2019-01-24 is 1.11
# controller-runtime 0.1.9 requires at least 1.12
[[override]]
name = "k8s.io/code-generator"
version = "kubernetes-1.12.6"
# Overridden to ensure compatibility with GKE
# GKE version as of 2019-01-24 is 1.11
# controller-runtime 0.1.9 requires at least 1.12
[[override]]
name = "k8s.io/client-go"
version = "kubernetes-1.12.6"
# This is the commit at which k8s depends on this in 1.11
# It seems to be broken at HEAD.
# TODO When we upgrade to k8s 1.13 we can remove this override
# thanks to https://github.com/kubernetes/kubernetes/pull/71296.
[[override]]
name = "github.com/json-iterator/go"
revision = "f2b4162afba35581b6d4a50d3b8f34e33c144682"
# Constrain the version of knative/pkg we would like to import.
# This controls when we upgrade apis independently of Serving.
[[override]]
name = "github.com/knative/pkg"
# HEAD as of 2019-05-16
revision = "7b196cff4669dbd6d31b83bdeb72fbaafd7f8993"
# TODO why is this overridden?
[[override]]
name = "github.com/Shopify/sarama"
version = "1.19.0"
# 0.1.9 is most recent version that still uses K8s 1.12. 0.1.10 uses K8s 1.13.
[[constraint]]
name = "sigs.k8s.io/controller-runtime"
version = "=0.1.9"
# TODO why is this overridden?
[[override]]
name = "github.com/nats-io/go-nats"
version = "1.6.0"
# TODO why is this overridden?
[[override]]
name = "github.com/nats-io/go-nats-streaming"
version = "0.4.0"
# TODO why is this overridden?
[[override]]
name = "github.com/nats-io/nats-streaming-server"
version = "0.11.0"
[[constraint]]
name = "github.com/cloudevents/sdk-go"
version = "=0.7.0"
# needed because pkg upgraded
[[override]]
name = "go.uber.org/zap"
revision = "67bc79d13d155c02fd008f721863ff8cc5f30659"