1
0
mirror of https://github.com/rancher/steve.git synced 2025-09-05 09:21:12 +00:00
Files
steve/go.mod

41 lines
1.4 KiB
Modula-2
Raw Normal View History

2019-09-11 14:05:00 -07:00
module github.com/rancher/steve
2019-08-04 10:41:32 -07:00
2020-01-30 22:01:21 -07:00
go 1.13
2019-08-04 10:41:32 -07:00
2020-05-30 19:03:38 -07: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
2022-05-25 18:34:56 -05:00
k8s.io/client-go => github.com/rancher/client-go v1.24.0-rancher1
2020-05-30 19:03:38 -07:00
)
2019-08-04 10:41:32 -07:00
require (
2021-03-01 22:26:26 -07:00
github.com/adrg/xdg v0.3.1
2022-05-25 18:34:56 -05:00
github.com/gorilla/mux v1.8.0
2021-03-18 10:12:18 -07:00
github.com/gorilla/websocket v1.4.2
2020-07-29 21:48:03 -07:00
github.com/imdario/mergo v0.3.8 // indirect
2021-03-01 17:12:48 -07:00
github.com/pborman/uuid v1.2.0
2020-05-16 22:25:47 -07:00
github.com/pkg/errors v0.9.1
2022-05-25 18:49:16 -05:00
github.com/prometheus/client_golang v1.12.1
2021-09-22 13:40:45 -06:00
github.com/rancher/apiserver v0.0.0-20210922180056-297b6df8d714
2020-07-14 13:26:35 -07:00
github.com/rancher/dynamiclistener v0.2.1-0.20200714201033-9c1939da3af9
2021-03-01 17:12:48 -07:00
github.com/rancher/kubernetes-provider-detector v0.1.2
2021-04-22 17:37:13 -07:00
github.com/rancher/norman v0.0.0-20210423002317-8e6ffc77a819
github.com/rancher/remotedialer v0.2.6-0.20220104192242-f3837f8d649a
2022-01-07 14:29:46 -07:00
github.com/rancher/wrangler v0.8.11-0.20211214201934-f5aa5d9f2e81
2022-05-25 18:49:16 -05:00
github.com/sirupsen/logrus v1.8.1
2022-05-25 18:34:56 -05:00
github.com/stretchr/testify v1.7.0
2020-01-30 22:01:21 -07:00
github.com/urfave/cli v1.22.2
2020-01-30 22:37:59 -07:00
github.com/urfave/cli/v2 v2.1.1
2022-05-25 18:34:56 -05:00
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
k8s.io/api v0.24.0
2022-05-25 18:49:16 -05:00
k8s.io/apiextensions-apiserver v0.24.0
2022-05-25 18:34:56 -05:00
k8s.io/apimachinery v0.24.0
2022-05-25 18:49:16 -05:00
k8s.io/apiserver v0.24.0
2020-05-30 19:03:38 -07:00
k8s.io/client-go v12.0.0+incompatible
2020-01-30 22:37:59 -07:00
k8s.io/klog v1.0.0
2022-05-25 18:49:16 -05:00
k8s.io/kube-aggregator v0.24.0
2022-05-25 18:34:56 -05:00
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42
2019-08-04 10:41:32 -07:00
)