1
0
mirror of https://github.com/rancher/steve.git synced 2025-07-05 02:56:35 +00:00
steve/go.mod

34 lines
1.1 KiB
Modula-2
Raw Normal View History

2019-09-11 21:05:00 +00:00
module github.com/rancher/steve
2019-08-04 17:41:32 +00:00
2020-01-31 05:01:21 +00:00
go 1.13
2019-08-04 17:41:32 +00:00
2020-01-31 05:43:08 +00:00
replace k8s.io/client-go => k8s.io/client-go v0.17.2
2019-08-04 17:41:32 +00:00
require (
2020-01-31 05:01:21 +00:00
github.com/ghodss/yaml v1.0.0
2020-02-22 05:19:07 +00:00
github.com/google/go-cmp v0.4.0 // indirect
2020-01-31 05:01:21 +00:00
github.com/gorilla/mux v1.6.2
github.com/gorilla/websocket v1.4.0
2020-02-22 05:19:07 +00:00
github.com/json-iterator/go v1.1.9 // indirect
2020-01-31 05:01:21 +00:00
github.com/pkg/errors v0.8.1
2020-03-11 06:11:22 +00:00
github.com/rancher/dynamiclistener v0.2.1-0.20200213165308-111c5b43e932
2020-03-24 23:19:10 +00:00
github.com/rancher/wrangler v0.5.3
2020-03-21 14:52:11 +00:00
github.com/rancher/wrangler-api v0.5.0
2019-08-04 17:41:32 +00:00
github.com/sirupsen/logrus v1.4.2
2020-02-22 05:19:07 +00:00
github.com/stretchr/testify v1.4.0
2020-01-31 05:01:21 +00:00
github.com/urfave/cli v1.22.2
2020-01-31 05:37:59 +00:00
github.com/urfave/cli/v2 v2.1.1
2020-02-22 05:19:07 +00:00
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
golang.org/x/sys v0.0.0-20200122134326-e047566fdf82 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/yaml.v2 v2.2.5 // indirect
2020-01-31 05:01:21 +00:00
k8s.io/api v0.17.2
k8s.io/apiextensions-apiserver v0.17.2
k8s.io/apimachinery v0.17.2
k8s.io/apiserver v0.17.2
2019-08-04 17:41:32 +00:00
k8s.io/client-go v11.0.1-0.20190409021438-1a26190bd76a+incompatible
2020-01-31 05:37:59 +00:00
k8s.io/klog v1.0.0
2020-01-31 05:01:21 +00:00
k8s.io/kube-aggregator v0.17.2
k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a
2019-08-04 17:41:32 +00:00
)