-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
43 lines (40 loc) · 1.83 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
module github.com/markfisher/rokn
go 1.14
require (
github.com/Microsoft/hcsshim v0.8.9 // indirect
github.com/cloudevents/sdk-go/v2 v2.0.1-0.20200608152019-2ab697c8fc0b
github.com/containerd/continuity v0.0.0-20200413184840-d3ef23f19fbb // indirect
github.com/docker/go-connections v0.4.0
github.com/golang/protobuf v1.4.2 // indirect
github.com/kelseyhightower/envconfig v1.4.0
github.com/michaelklishin/rabbit-hole v1.5.0
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/sirupsen/logrus v1.6.0 // indirect
github.com/streadway/amqp v1.0.0
github.com/testcontainers/testcontainers-go v0.7.0
go.uber.org/zap v1.15.0
golang.org/x/net v0.0.0-20200625001655-4c5254603344 // indirect
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208 // indirect
golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae // indirect
google.golang.org/genproto v0.0.0-20200626011028-ee7919e894b5 // indirect
google.golang.org/grpc v1.30.0 // indirect
google.golang.org/protobuf v1.25.0 // indirect
gotest.tools v2.2.0+incompatible
k8s.io/api v0.18.4
k8s.io/apimachinery v0.18.4
k8s.io/client-go v11.0.1-0.20190805182717-6502b5e7b1b5+incompatible
k8s.io/code-generator v0.18.0
k8s.io/kube-openapi v0.0.0-20200410145947-bcb3869e6f29
knative.dev/eventing v0.15.1-0.20200619221325-e8ca69f837c7
knative.dev/pkg v0.0.0-20200619214325-bfb590781363
knative.dev/test-infra v0.0.0-20200619200026-0b0587234302
)
replace (
github.com/docker/docker => github.com/docker/engine v0.0.0-20190717161051-705d9623b7c1
github.com/prometheus/client_golang => github.com/prometheus/client_golang v0.9.2
k8s.io/api => k8s.io/api v0.17.6
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.17.6
k8s.io/apimachinery => k8s.io/apimachinery v0.17.6
k8s.io/client-go => k8s.io/client-go v0.17.6
k8s.io/code-generator => k8s.io/code-generator v0.17.6
)