forked from kubernetes-csi/csi-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
30 lines (26 loc) · 1.04 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
module github.com/kubernetes-csi/csi-proxy
go 1.13
replace (
github.com/kubernetes-csi/csi-proxy/client => ./client
// using my fork of gengo until
// https://github.com/kubernetes/gengo/pull/155#issuecomment-537589085
// is implemented, and the generic conversion generator merged into code-generator
// FIXME: switch back to the upstream repo and/or code-generator!
k8s.io/gengo => github.com/wk8/gengo v0.0.0-20191007012548-3d2530bfe606
)
require (
github.com/Microsoft/go-winio v0.4.14
github.com/golang/protobuf v1.4.1
github.com/iancoleman/strcase v0.0.0-20190422225806-e506e3ef7365
github.com/kubernetes-csi/csi-proxy/client v0.0.0-00010101000000-000000000000
github.com/pkg/errors v0.8.1
github.com/sergi/go-diff v1.0.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.4.0
golang.org/x/net v0.0.0-20200202094626-16171245cfb2 // indirect
golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5
golang.org/x/text v0.3.2 // indirect
google.golang.org/grpc v1.27.1
k8s.io/gengo v0.0.0-00010101000000-000000000000
k8s.io/klog v1.0.0
)