forked from kyma-incubator/reconciler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
51 lines (49 loc) · 1.75 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
module github.com/kyma-incubator/reconciler
go 1.16
require (
github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7
github.com/avast/retry-go v3.0.0+incompatible
github.com/coreos/go-semver v0.3.0
github.com/fatih/color v1.10.0 // indirect
github.com/fatih/structs v1.1.0
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/go-git/go-git/v5 v5.4.2
github.com/golang-migrate/migrate/v4 v4.15.1
github.com/google/uuid v1.3.0
github.com/gorilla/mux v1.8.0
github.com/iancoleman/strcase v0.1.3
github.com/imdario/mergo v0.3.12
github.com/json-iterator/go v1.1.12 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/lib/pq v1.10.0
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-sqlite3 v1.14.7
github.com/mholt/archiver/v3 v3.5.1
github.com/mitchellh/mapstructure v1.4.1
github.com/olekukonko/tablewriter v0.0.5
github.com/otiai10/copy v1.7.0
github.com/panjf2000/ants/v2 v2.4.6
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.11.0
github.com/rogpeppe/go-internal v1.8.0 // indirect
github.com/spf13/cast v1.4.1 // indirect
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.8.1
github.com/square/go-jose/v3 v3.0.0-20200630053402-0a67ce9b0693
github.com/stretchr/testify v1.7.0
github.com/traefik/yaegi v0.9.17
go.uber.org/zap v1.17.0
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/sys v0.0.0-20211031064116-611d5d643895 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
helm.sh/helm/v3 v3.7.2
k8s.io/api v0.22.4
k8s.io/apiextensions-apiserver v0.22.4
k8s.io/apimachinery v0.22.4
k8s.io/cli-runtime v0.22.4
k8s.io/client-go v0.22.4
k8s.io/kubectl v0.22.4
sigs.k8s.io/yaml v1.2.0
)