forked from kubeflow/pipelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
65 lines (62 loc) · 2.52 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
63
64
65
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-workflows/v3 v3.2.3
github.com/aws/aws-sdk-go v1.36.1
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/eapache/go-resiliency v1.2.0
github.com/elazarl/goproxy v0.0.0-20181111060418-2ce16c963a8a // indirect
github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 // indirect
github.com/fsnotify/fsnotify v1.4.9
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
github.com/go-ini/ini v1.51.1 // indirect
github.com/go-openapi/errors v0.19.9
github.com/go-openapi/runtime v0.19.24
github.com/go-openapi/strfmt v0.19.11
github.com/go-openapi/swag v0.19.13
github.com/go-openapi/validate v0.20.1
github.com/go-sql-driver/mysql v1.6.0
github.com/golang/glog v1.0.0
github.com/golang/protobuf v1.5.2
github.com/google/addlicense v0.0.0-20200906110928-a0294312aa76
github.com/google/cel-go v0.9.0
github.com/google/go-cmp v0.5.6
github.com/google/uuid v1.1.2
github.com/gorilla/mux v1.8.0
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0
github.com/grpc-ecosystem/grpc-gateway v1.16.0
github.com/jinzhu/gorm v1.9.1
github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a // indirect
github.com/jinzhu/now v0.0.0-20181116074157-8ec929ed50c3 // indirect
github.com/kubeflow/pipelines/api v0.0.0-20220311022801-11635101d944
github.com/kubeflow/pipelines/third_party/ml-metadata v0.0.0-20220118175555-e78ed557ddcb
github.com/lestrrat-go/strftime v1.0.4
github.com/mattn/go-sqlite3 v1.9.0
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/prometheus/client_golang v1.11.0
github.com/robfig/cron v1.2.0
github.com/sirupsen/logrus v1.7.0
github.com/spf13/viper v1.8.1
github.com/stretchr/testify v1.7.0
gocloud.dev v0.22.0
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f
google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6
google.golang.org/grpc v1.44.0
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0
google.golang.org/protobuf v1.27.1
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.21.5
k8s.io/apimachinery v0.21.5
k8s.io/client-go v0.21.5
k8s.io/code-generator v0.21.5
k8s.io/kubernetes v0.17.9
sigs.k8s.io/controller-runtime v0.9.7
)
replace (
k8s.io/kubernetes => k8s.io/kubernetes v1.11.1
sigs.k8s.io/controller-tools => sigs.k8s.io/controller-tools v0.2.9
)
go 1.13