forked from kubeflow/kfp-tekton-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
52 lines (49 loc) · 1.92 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
module github.com/kubeflow/pipelines
require (
github.com/Masterminds/squirrel v0.0.0-20190107164353-fa735ea14f09
github.com/VividCortex/mysqlerr v0.0.0-20170204212430-6c6b55f8796f
github.com/argoproj/argo v2.5.2+incompatible
github.com/cenkalti/backoff v2.0.0+incompatible
github.com/elazarl/goproxy v0.0.0-20181111060418-2ce16c963a8a // indirect
github.com/fsnotify/fsnotify v1.4.9
github.com/ghodss/yaml v1.0.0
github.com/go-ini/ini v1.56.0 // indirect
github.com/go-openapi/errors v0.19.2
github.com/go-openapi/runtime v0.19.4
github.com/go-openapi/strfmt v0.19.3
github.com/go-openapi/swag v0.19.8
github.com/go-openapi/validate v0.19.5
github.com/go-sql-driver/mysql v1.5.0
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
github.com/golang/protobuf v1.4.0
github.com/google/go-cmp v0.4.1
github.com/google/uuid v1.1.1
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e // indirect
github.com/grpc-ecosystem/grpc-gateway v1.12.2
github.com/jinzhu/gorm v1.9.12
github.com/mattn/go-sqlite3 v2.0.1+incompatible
github.com/minio/minio-go v6.0.14+incompatible
github.com/peterhellberg/duration v0.0.0-20191119133758-ec6baeebcd10
github.com/pkg/errors v0.9.1
github.com/robfig/cron v1.2.0
github.com/sirupsen/logrus v1.4.2
github.com/spf13/viper v1.6.2
github.com/stretchr/testify v1.5.1
github.com/tektoncd/pipeline v0.13.0
github.com/valyala/fasttemplate v1.1.0 // indirect
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e
google.golang.org/api v0.20.0
google.golang.org/genproto v0.0.0-20200326112834-f447254575fd
google.golang.org/grpc v1.28.0
gopkg.in/ini.v1 v1.56.0 // indirect
gopkg.in/yaml.v2 v2.3.0
k8s.io/api v0.17.6
k8s.io/apimachinery v0.17.6
k8s.io/client-go v11.0.1-0.20190805182717-6502b5e7b1b5+incompatible
sigs.k8s.io/controller-runtime v0.5.0
)
replace (
github.com/googleapis/gnostic => github.com/googleapis/gnostic v0.2.0
k8s.io/client-go => k8s.io/client-go v0.17.6
)
go 1.13