forked from kubernetes-retired/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (22 loc) · 780 Bytes
/
go.mod
File metadata and controls
24 lines (22 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module github.com/kubernetes/dashboard
go 1.15
require (
github.com/docker/distribution v2.7.1+incompatible
// emicklei/go-restful v3.3.0 or later breaks http response body if it has boolean value.
// See emicklei/go-restful#449
github.com/emicklei/go-restful/v3 v3.2.0
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/prometheus/client_golang v1.7.1
github.com/spf13/pflag v1.0.5
golang.org/x/net v0.0.0-20201006153459-a7d1128ccaa0
golang.org/x/text v0.3.3
gopkg.in/igm/sockjs-go.v2 v2.1.0
gopkg.in/square/go-jose.v2 v2.4.1
gopkg.in/yaml.v2 v2.3.0
k8s.io/api v0.19.2
k8s.io/apiextensions-apiserver v0.19.2
k8s.io/apimachinery v0.19.2
k8s.io/client-go v0.19.2
k8s.io/heapster v1.5.4
)