-
Notifications
You must be signed in to change notification settings - Fork 16
/
go.mod
34 lines (31 loc) · 1.15 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
module github.com/vultr/vultr-csi
go 1.23
require (
github.com/container-storage-interface/spec v1.10.0
github.com/golang/protobuf v1.5.4
github.com/sirupsen/logrus v1.9.3
github.com/vultr/govultr/v3 v3.11.2
github.com/vultr/metadata v1.1.0
golang.org/x/oauth2 v0.23.0
golang.org/x/sync v0.8.0
golang.org/x/sys v0.26.0
google.golang.org/grpc v1.67.1
k8s.io/mount-utils v0.31.2
k8s.io/utils v0.0.0-20240902221715-702e33fdd3c3
)
require (
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
github.com/go-logr/logr v1.4.2 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/moby/sys/mountinfo v0.7.2 // indirect
github.com/opencontainers/runc v1.1.14 // indirect
github.com/opencontainers/runtime-spec v1.2.0 // indirect
golang.org/x/net v0.29.0 // indirect
golang.org/x/text v0.18.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
google.golang.org/protobuf v1.34.2 // indirect
k8s.io/klog/v2 v2.130.1 // indirect
)