forked from cloudfoundry-incubator/quarks-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
55 lines (53 loc) · 2.41 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
52
53
54
55
module code.cloudfoundry.org/cf-operator
require (
code.cloudfoundry.org/quarks-job v0.0.0-20200227162224-2f462786a141
code.cloudfoundry.org/quarks-utils v0.0.0-20200225114218-378cd73b8745
github.com/beorn7/perks v1.0.1 // indirect
github.com/bmatcuk/doublestar v1.1.1 // indirect
github.com/charlievieth/fs v0.0.0-20170613215519-7dc373669fa1 // indirect
github.com/cloudflare/cfssl v0.0.0-20181102015659-ea4033a214e7
github.com/cloudfoundry/bosh-cli v5.4.0+incompatible
github.com/cloudfoundry/bosh-utils v0.0.0-20190206192830-9a0affed2bf1 // indirect
github.com/cppforlife/go-patch v0.0.0-20171006213518-250da0e0e68c
github.com/daaku/go.zipexe v1.0.1 // indirect
github.com/dchest/uniuri v0.0.0-20160212164326-8902c56451e9
github.com/docker/spdystream v0.0.0-20181023171402-6480d4af844c // indirect
github.com/elazarl/goproxy v0.0.0-20191011121108-aa519ddbe484 // indirect
github.com/fsnotify/fsnotify v1.4.7
github.com/go-sql-driver/mysql v1.4.1 // indirect
github.com/go-test/deep v1.0.5
github.com/golang/mock v1.4.0
github.com/gonvenience/bunt v1.1.1
github.com/google/certificate-transparency-go v1.0.21 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hpcloud/tail v1.0.0
github.com/imdario/mergo v0.3.8
github.com/jmoiron/sqlx v1.2.0 // indirect
github.com/kisielk/sqlstruct v0.0.0-20150923205031-648daed35d49 // indirect
github.com/lib/pq v1.2.0 // indirect
github.com/mattn/go-sqlite3 v1.11.0 // indirect
github.com/mitchellh/mapstructure v1.1.2
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
github.com/onsi/ginkgo v1.12.0
github.com/onsi/gomega v1.9.0
github.com/pkg/errors v0.8.1
github.com/prometheus/client_golang v0.9.4 // indirect
github.com/prometheus/procfs v0.0.8 // indirect
github.com/spf13/afero v1.2.2
github.com/spf13/cobra v0.0.6
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.6.2
github.com/viovanov/bosh-template-go v0.0.0-20190801125410-a195ef3de03a
go.uber.org/zap v1.14.0
golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586
gomodules.xyz/jsonpatch/v2 v2.0.1
gopkg.in/yaml.v2 v2.2.8
k8s.io/api v0.0.0-20190918155943-95b840bb6a1f
k8s.io/apiextensions-apiserver v0.0.0-20190918161926-8f644eb6e783
k8s.io/apimachinery v0.0.0-20190913080033-27d36303b655
k8s.io/client-go v0.0.0-20190918160344-1fbdaa4c8d90
k8s.io/utils v0.0.0-20190801114015-581e00157fb1
sigs.k8s.io/controller-runtime v0.4.0
sigs.k8s.io/yaml v1.2.0
)
go 1.13