1
0
mirror of https://github.com/rancher/steve.git synced 2025-08-11 19:21:36 +00:00
steve/go.mod

40 lines
1.4 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-05-31 02:03:38 +00:00
replace (
github.com/crewjam/saml => github.com/rancher/saml v0.0.0-20180713225824-ce1532152fde
github.com/knative/pkg => github.com/rancher/pkg v0.0.0-20190514055449-b30ab9de040e
github.com/matryer/moq => github.com/rancher/moq v0.0.0-20190404221404-ee5226d43009
2020-12-08 23:33:32 +00:00
k8s.io/client-go => github.com/rancher/client-go v1.20.0-rancher.1
2020-05-31 02:03:38 +00:00
)
2019-08-04 17:41:32 +00:00
require (
2021-03-02 05:26:26 +00:00
github.com/adrg/xdg v0.3.1
2020-05-31 02:03:38 +00:00
github.com/gorilla/mux v1.7.3
2021-03-18 17:12:18 +00:00
github.com/gorilla/websocket v1.4.2
2020-07-14 20:26:35 +00:00
github.com/hashicorp/golang-lru v0.5.3 // indirect
2020-07-30 04:48:03 +00:00
github.com/imdario/mergo v0.3.8 // indirect
2021-03-02 00:12:48 +00:00
github.com/pborman/uuid v1.2.0
2020-05-17 05:25:47 +00:00
github.com/pkg/errors v0.9.1
2021-07-27 16:09:30 +00:00
github.com/rancher/apiserver v0.0.0-20210727155917-6a723678dd3d
2020-07-14 20:26:35 +00:00
github.com/rancher/dynamiclistener v0.2.1-0.20200714201033-9c1939da3af9
2021-03-02 00:12:48 +00:00
github.com/rancher/kubernetes-provider-detector v0.1.2
2021-04-23 00:37:13 +00:00
github.com/rancher/norman v0.0.0-20210423002317-8e6ffc77a819
2021-03-18 17:12:18 +00:00
github.com/rancher/remotedialer v0.2.6-0.20210318171128-d1ebd5202be4
2021-04-23 00:36:32 +00:00
github.com/rancher/wrangler v0.8.1-0.20210423003607-f71a90542852
2020-12-08 23:33:32 +00:00
github.com/sirupsen/logrus v1.6.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-07-14 20:26:35 +00:00
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
2020-12-08 23:33:32 +00:00
k8s.io/api v0.20.0
k8s.io/apiextensions-apiserver v0.20.0
k8s.io/apimachinery v0.20.0
k8s.io/apiserver v0.20.0
2020-05-31 02:03:38 +00:00
k8s.io/client-go v12.0.0+incompatible
2020-01-31 05:37:59 +00:00
k8s.io/klog v1.0.0
2020-12-08 23:33:32 +00:00
k8s.io/kube-aggregator v0.20.0
k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd
2019-08-04 17:41:32 +00:00
)