forked from knative-extensions/eventing-rabbitmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
executable file
·62 lines (55 loc) · 2.69 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
58
59
60
61
62
module knative.dev/eventing-rabbitmq
go 1.14
require (
github.com/NeowayLabs/wabbit v0.0.0-20200409220312-12e68ab5b0c6
github.com/aws/aws-sdk-go v1.34.11 // indirect
github.com/cloudevents/sdk-go/v2 v2.2.0
github.com/containerd/continuity v0.0.0-20200228182428-0f16d7a0959c
github.com/docker/go-connections v0.4.0
github.com/fsouza/go-dockerclient v1.6.5 // indirect
github.com/go-openapi/spec v0.19.7 // indirect
github.com/go-redis/redis v6.15.9+incompatible // indirect
github.com/google/go-cmp v0.5.2
github.com/google/licenseclassifier v0.0.0-20200708223521-3d09a0ea2f39
github.com/imdario/mergo v0.3.11 // indirect
github.com/influxdata/tdigest v0.0.1 // indirect
github.com/kelseyhightower/envconfig v1.4.0
github.com/michaelklishin/rabbit-hole/v2 v2.4.0
github.com/n3wscott/rigging v0.3.0
github.com/onsi/ginkgo v1.14.0 // indirect
github.com/prometheus/client_golang v1.7.1 // indirect
github.com/streadway/amqp v1.0.0
github.com/testcontainers/testcontainers-go v0.7.0
github.com/tiago4orion/conjure v0.0.0-20150908101743-93cb30b9d218 // indirect
go.uber.org/zap v1.15.0
golang.org/x/tools v0.0.0-20200929223013-bf155c11ec6f // indirect
gotest.tools v2.2.0+incompatible
k8s.io/api v0.18.8
k8s.io/apiextensions-apiserver v0.18.8 // indirect
k8s.io/apimachinery v0.18.8
k8s.io/client-go v12.0.0+incompatible
k8s.io/code-generator v0.18.8
k8s.io/kube-openapi v0.0.0-20200410145947-bcb3869e6f29
knative.dev/eventing v0.18.1-0.20201020132859-ca85d86bb9a4
knative.dev/pkg v0.0.0-20201020033659-eafc8c6f72a7
knative.dev/test-infra v0.0.0-20201020062259-cd8625126729
)
replace (
// This branch allows creation of headers exchange.
github.com/NeowayLabs/wabbit => github.com/vaikas/wabbit v0.0.0-20201002085521-b5b22698ecc7
// Grab the latest so we get modifiable retries
github.com/cloudevents/sdk-go/v2 => github.com/cloudevents/sdk-go/v2 v2.3.1-0.20201008104108-58f826d67d91
github.com/docker/docker => github.com/docker/engine v0.0.0-20190717161051-705d9623b7c1
// Somehow mattmoor/bindings causes grief...
github.com/google/go-github/v32 => github.com/google/go-github/v32 v32.0.1-0.20200624231906-3d244d3d496e
// WORKAROUND until KEDA v2 is not released
github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.11.0
// lock prom import to avoid a bad goautoneg import.
github.com/prometheus/client_golang => github.com/prometheus/client_golang v0.9.2
k8s.io/api => k8s.io/api v0.18.8
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.18.8
k8s.io/apimachinery => k8s.io/apimachinery v0.18.8
k8s.io/apiserver => k8s.io/apiserver v0.18.8
k8s.io/client-go => k8s.io/client-go v0.18.8
k8s.io/cloud-provider => k8s.io/cloud-provider v0.18.8
)