forked from kyma-incubator/knative-kafka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gopkg.toml
68 lines (56 loc) · 1.58 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
#
# Knative Kafka Channel Dependency Specification
#
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",
"knative.dev/pkg/codegen/cmd/injection-gen"
]
[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 = "knative.dev/test-infra"
non-go = false
[[prune.project]]
name = "knative.dev/pkg"
unused-packages = false
non-go = false
# Align With Knative Eventing-Contrib
[[constraint]]
name = "knative.dev/eventing-contrib"
branch = "release-0.14"
# Align With Knative Eventing-Contrib
[[constraint]]
name = "knative.dev/eventing"
branch = "release-0.14"
# Align With Knative Eventing-Contrib
[[constraint]]
name = "github.com/cloudevents/sdk-go"
version = "v2.0.0-RC1"
# Knative-Kafka Dependency Only!
[[constraint]]
name = "github.com/confluentinc/confluent-kafka-go"
version = "~v1.0.0"
# Using Old Azure Because We're Not On Go Modules : (
[[constraint]]
name = "github.com/Azure/azure-event-hubs-go"
version = "v1.3.1"
# Align With Knative Eventing-Contrib
[[override]]
name = "gopkg.in/yaml.v2"
version = "v2.2.4"
# For dependency below: Refer to issue https://github.com/golang/dep/issues/1799
[[override]]
name = "gopkg.in/fsnotify.v1"
source = "https://github.com/fsnotify/fsnotify.git"
version="v1.4.7"