-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgo.mod
33 lines (30 loc) · 1.08 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module github.com/rancher-sandbox/hypper
go 1.15
// WARNING! Do NOT replace this without also replacing their lines in the `require` stanza below.
// These `replace` stanzas are IGNORED when this is imported as a library
replace github.com/docker/distribution => github.com/docker/distribution v0.0.0-20191216044856-a8371794149d
require (
github.com/Masterminds/log-go v0.4.0
github.com/Masterminds/semver/v3 v3.1.1
github.com/crillab/gophersat v1.3.1
github.com/fatih/color v1.10.0
github.com/gofrs/flock v0.8.0
github.com/gosuri/uitable v0.0.4
github.com/jinzhu/copier v0.2.8
github.com/kyokomi/emoji/v2 v2.2.8
github.com/mattn/go-shellwords v1.0.11
github.com/mitchellh/hashstructure/v2 v2.0.2
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.2.1
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.7.0
github.com/thediveo/enumflag v0.10.1
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d
gopkg.in/yaml.v2 v2.4.0
helm.sh/helm/v3 v3.6.3
k8s.io/api v0.21.3
k8s.io/apimachinery v0.21.3
k8s.io/cli-runtime v0.21.3
k8s.io/client-go v0.21.3
sigs.k8s.io/yaml v1.2.0
)