forked from kubernetes-csi/csi-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
35 lines (31 loc) · 1.34 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
module github.com/kubernetes-csi/csi-proxy
go 1.16
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!
// (mauriciopoppe) while working on #140 I found out that I had to do an
// override to the fork to stop generating auto* functions
// https://github.com/mauriciopoppe/gengo/commit/9c78f58f3486e3c0cdb02ed9551d32762ac99773
k8s.io/gengo => github.com/mauriciopoppe/gengo v0.0.0-20210525224835-9c78f58f3486
)
require (
github.com/Microsoft/go-winio v0.4.16
github.com/google/go-cmp v0.5.0
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.9.1
github.com/sergi/go-diff v1.0.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.5.1
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.38.0
google.golang.org/protobuf v1.25.0
k8s.io/gengo v0.0.0-00010101000000-000000000000
k8s.io/klog v1.0.0 // indirect
k8s.io/klog/v2 v2.9.0
)