1
0
mirror of https://github.com/rancher/rke.git synced 2025-07-31 22:56:19 +00:00
rke/go.mod

55 lines
2.1 KiB
Modula-2
Raw Normal View History

2019-08-19 17:52:07 +00:00
module github.com/rancher/rke
2021-04-29 21:07:38 +00:00
go 1.16
2019-08-19 17:52:07 +00:00
2019-09-26 02:31:01 +00:00
replace (
2019-12-11 20:53:38 +00:00
github.com/knative/pkg => github.com/rancher/pkg v0.0.0-20190514055449-b30ab9de040e
2021-04-29 21:07:38 +00:00
k8s.io/client-go => k8s.io/client-go v0.21.0
2019-09-26 02:31:01 +00:00
)
2019-07-05 04:22:55 +00:00
2019-08-19 17:52:07 +00:00
require (
2021-04-29 21:07:38 +00:00
github.com/Masterminds/sprig/v3 v3.2.2
2020-08-14 16:43:49 +00:00
github.com/Microsoft/hcsshim v0.8.9 // indirect
github.com/apparentlymart/go-cidr v1.0.1
github.com/aws/aws-sdk-go v1.38.65
2019-09-26 02:31:01 +00:00
github.com/blang/semver v3.5.1+incompatible
2021-04-29 21:07:38 +00:00
github.com/containerd/containerd v1.4.1-0.20201117152358-0edc412565dc // indirect
2020-08-14 16:43:49 +00:00
github.com/containerd/continuity v0.0.0-20200710164510-efbc4488d8fe // indirect
2020-03-03 17:08:30 +00:00
github.com/coreos/etcd v3.3.17+incompatible
2019-08-19 17:52:07 +00:00
github.com/coreos/go-semver v0.3.0
2019-10-30 19:48:32 +00:00
github.com/docker/distribution v2.7.1+incompatible
2021-04-29 21:07:38 +00:00
github.com/docker/docker v20.10.6+incompatible
2020-03-03 17:08:30 +00:00
github.com/docker/go-connections v0.4.0
2019-10-03 01:56:39 +00:00
github.com/ghodss/yaml v1.0.0
2020-02-13 22:47:04 +00:00
github.com/go-bindata/go-bindata v3.1.2+incompatible
2019-08-19 17:52:07 +00:00
github.com/go-ini/ini v1.37.0
2020-07-11 16:24:33 +00:00
github.com/gopherjs/gopherjs v0.0.0-20191106031601-ce3c9ade29de // indirect
2019-09-26 02:31:01 +00:00
github.com/gorilla/mux v1.7.3 // indirect
2020-07-11 16:24:33 +00:00
github.com/grpc-ecosystem/go-grpc-middleware v1.1.0 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.12.1 // indirect
github.com/hashicorp/golang-lru v0.5.3 // indirect
2021-04-29 21:07:38 +00:00
github.com/mattn/go-colorable v0.1.8
2019-08-19 17:52:07 +00:00
github.com/mcuadros/go-version v0.0.0-20180611085657-6d5863ca60fa
2021-04-29 21:07:38 +00:00
github.com/moby/sys/mount v0.2.0 // indirect
2020-01-23 22:52:10 +00:00
github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c // indirect
github.com/opencontainers/image-spec v1.0.1 // indirect
2020-08-14 16:43:49 +00:00
github.com/opencontainers/runc v0.1.1 // indirect
github.com/pkg/errors v0.9.1
github.com/rancher/norman v0.0.0-20200517050325-f53cae161640
2021-04-29 21:07:38 +00:00
github.com/sirupsen/logrus v1.7.0
2020-07-11 16:24:33 +00:00
github.com/smartystreets/assertions v1.0.1 // indirect
2020-12-08 23:32:23 +00:00
github.com/stretchr/testify v1.6.1
2020-01-23 22:52:10 +00:00
github.com/urfave/cli v1.20.0
2020-07-11 16:24:33 +00:00
go.uber.org/atomic v1.5.0 // indirect
2021-04-29 21:07:38 +00:00
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.21.0
k8s.io/apimachinery v0.21.0
k8s.io/apiserver v0.21.0
k8s.io/client-go v0.21.0
k8s.io/gengo v0.0.0-20201214224949-b6c5ce23f027
k8s.io/kubectl v0.21.0
2020-03-27 17:46:20 +00:00
sigs.k8s.io/yaml v1.2.0
2019-08-19 17:52:07 +00:00
)