go.mod 656 Bytes
Newer Older
songlinfeng's avatar
songlinfeng committed
1
2
3
module k8s-device-plugin

go 1.25.3
songlinfeng's avatar
songlinfeng committed
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

require (
	github.com/golang/glog v1.2.5
	github.com/kubevirt/device-plugin-manager v1.19.5
)

require (
	github.com/fsnotify/fsnotify v1.4.9 // indirect
	github.com/gogo/protobuf v1.3.1 // indirect
	github.com/golang/protobuf v1.4.2 // indirect
	golang.org/x/net v0.0.0-20200904194848-62affa334b73 // indirect
	golang.org/x/sys v0.0.0-20200917073148-efd3b9a0ff20 // indirect
	golang.org/x/text v0.3.3 // indirect
	google.golang.org/genproto v0.0.0-20200916143405-f6a2fa72f0c4 // indirect
	google.golang.org/grpc v1.32.0 // indirect
	google.golang.org/protobuf v1.25.0 // indirect
	k8s.io/kubelet v0.19.2 // indirect
)