forked from kubernetes-retired/service-catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGopkg.toml
112 lines (94 loc) · 4.01 KB
/
Gopkg.toml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# Tips for using dep:
# * Run dep ensure to sync your Gopkg.lock and vendor directory with your Gopkg.toml and code.
# * Gopkg.toml tells dep:
# * How to upgrade your dependencies.
# * How to resolve differences between the various versions that you vs. your dependencies require.
# * What versions downstream consumers of your code as a library should use.
# * You don't have to add every dependency that you use to Gopkg.toml, dep knows
# your dependencies from the imports in your code, and uses the lock to stick to a particular revision.
# * In case of merge conflicts, focus on fixing Gopkg.toml, and then re-run dep ensure to update Gopkg.lock.
# * Isolate changes to the vendor/ directory in a separate commit so it's easier to review your pull request.
# Force dep to vendor the code generators, which aren't imported just used at dev time.
# Picking a subpackage with Go code won't be necessary once https://github.com/golang/dep/pull/1545 is merged.
required = [
"github.com/jteeuwen/go-bindata/go-bindata","k8s.io/code-generator/cmd/defaulter-gen",
"k8s.io/code-generator/cmd/deepcopy-gen",
"k8s.io/code-generator/cmd/conversion-gen",
"k8s.io/code-generator/cmd/client-gen",
"k8s.io/code-generator/cmd/lister-gen",
"k8s.io/code-generator/cmd/informer-gen",
"k8s.io/code-generator/cmd/openapi-gen",
"k8s.io/gengo/args",
"github.com/kubernetes/repo-infra/kazel",
"golang.org/x/lint/golint",
]
# in sync with Kubernetes master (k8s 1.10 future release), but different from Kubernetes etcd version (3.1.10),
# but seems to have some improvements in memory consumption for embedded mode used in integration tests?
# (with v3.1.10 etcd pod crashes in Travis CI while we run tests)
# see https://github.com/kubernetes/kubernetes/blob/v1.9.1/Godeps/Godeps.json
[[constraint]]
name = "github.com/coreos/etcd"
version = "3.2.13"
# We want Nov 4, 2014 version as the Jul 24, 2015 version (latest version)
# introduces bug documented in issue 1187
# Using an override to not unncessarily restrict downstream consumers who
# won't need this exact revision.
[[override]]
name = "github.com/golang/glog"
revision = "44145f04b68cf362d9c4df2182967c2275eaefed"
# until https://github.com/operator-framework/getting-started/issues/16 is fixed
# use the changes from
# https://github.com/kubernetes/apimachinery/commit/5a8013207d0d28c7fe98193e5b6cdbf92e98a000
# which contains this change
# https://github.com/json-iterator/go/commit/f2b4162afba35581b6d4a50d3b8f34e33c144682
[[override]]
name = "github.com/json-iterator/go"
revision = "f2b4162afba35581b6d4a50d3b8f34e33c144682"
# explicit dependency by upsteram k8s.io/apiserver as the repository
# is unversioned and untagged
[[override]]
name = "k8s.io/kube-openapi"
revision = "91cfa479c814065e420cee7ed227db0f63a5854e"
# explicit dependency by upsteram k8s.io/go-client as it is compatible
# and does not build otherwise
# vendor/k8s.io/client-go/plugin/pkg/client/auth/azure/azure.go:300:25: cannot call non-function spt.Token (type adal.Token)
[[override]]
name = "github.com/Azure/go-autorest"
revision = "1ff28809256a84bb6966640ff3d0371af82ccba4"
[[constraint]]
name = "github.com/Azure/go-autorest"
version = "^9.1.0"
[[constraint]]
name = "github.com/spf13/cobra"
version = "0.0.2"
[[constraint]]
name = "github.com/spf13/viper"
version = "~1.0.0"
[[constraint]]
name = "k8s.io/api"
version = "kubernetes-1.11.0"
[[constraint]]
name = "k8s.io/apimachinery"
version = "kubernetes-1.11.0"
[[constraint]]
name = "k8s.io/apiserver"
version = "kubernetes-1.11.0"
[[override]]
name = "k8s.io/client-go"
version = "kubernetes-1.11.0"
[[constraint]]
name = "k8s.io/code-generator"
version = "kubernetes-1.11.0"
[[constraint]]
name = "github.com/pmorie/go-open-service-broker-client"
version = "=0.0.10"
[prune]
non-go = true
go-tests = true
unused-packages = true
# Prevent dep from pruning build scripts and codegen templates
[[prune.project]]
name = "github.com/kubernetes/repo-infra"
non-go = false
go-tests = false
unused-packages = false