forked from rancher/local-path-provisioner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
28 lines (25 loc) · 990 Bytes
/
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
module github.com/rancher/local-path-provisioner
go 1.16
replace (
github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2
golang.org/x/crypto => golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f
)
require (
github.com/Sirupsen/logrus v0.11.0
github.com/gogo/protobuf v1.3.0 // indirect
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
github.com/googleapis/gnostic v0.3.1 // indirect
github.com/hashicorp/golang-lru v0.5.3 // indirect
github.com/kelseyhightower/envconfig v1.4.0
github.com/miekg/dns v1.1.27 // indirect
github.com/pkg/errors v0.8.1
github.com/prometheus/client_golang v1.1.0 // indirect
github.com/stretchr/testify v1.7.0
github.com/urfave/cli v1.19.1
golang.org/x/time v0.0.0-20190921001708-c4c64cad1fd0 // indirect
k8s.io/api v0.17.1
k8s.io/apimachinery v0.17.1
k8s.io/client-go v0.17.1
sigs.k8s.io/sig-storage-lib-external-provisioner v4.0.2-0.20200115000635-36885abbb2bd+incompatible
sigs.k8s.io/yaml v1.1.0
)