1
0
mirror of https://github.com/rancher/steve.git synced 2025-08-01 23:03:28 +00:00
steve/go.mod

35 lines
1.2 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 (
2020-05-31 02:03:38 +00:00
github.com/gorilla/mux v1.7.3
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
2020-05-17 05:25:47 +00:00
github.com/pkg/errors v0.9.1
2020-10-23 00:04:18 +00:00
github.com/rancher/apiserver v0.0.0-20201023000256-1a0a904f9197
2020-07-14 20:26:35 +00:00
github.com/rancher/dynamiclistener v0.2.1-0.20200714201033-9c1939da3af9
github.com/rancher/norman v0.0.0-20200714195611-b3163ad4ebc4
2020-10-01 18:36:06 +00:00
github.com/rancher/wrangler v0.7.1
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
)