forked from crossplane/crossplane
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGopkg.toml
62 lines (54 loc) · 1.84 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
# Gopkg.toml
#
# Add constraints for packages that are a direct dependency
# of this project (i.e. they are imported by golang source code)
# and you want to ensure that only a specific version is needed.
# if you don't need a specific version don't add the constraint here.
# Constraints are of the form:
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# revision = "8991bc29aa16c548c550c7ff78260e27b9ab7c73"
#
# revision constraints are preferred to version constraints.
#
# add overrides for packages that are not used directly but
# you want to ensure that are at a specific version. for example,
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
ignored = [
"github.com/crossplaneio/crossplane/.cache",
"github.com/crossplaneio/crossplane/.work",
"github.com/crossplaneio/crossplane/_output",
"github.com/crossplaneio/crossplane/build",
]
required = [
"k8s.io/code-generator/cmd/deepcopy-gen", # for go generate
"sigs.k8s.io/controller-tools/cmd/controller-gen", # for crd/rbac generation
"golang.org/x/tools/cmd/stringer", # for go generate
]
[prune]
go-tests = true
unused-packages = true
[[constraint]]
name="sigs.k8s.io/controller-runtime"
version="v0.2.0-beta.5"
# The fork is based on v0.2.0-beta.5. See https://github.com/kubernetes-sigs/controller-tools/issues/301
[[override]]
name="sigs.k8s.io/controller-tools"
source = "https://github.com/muvaf/controller-tools.git"
revision = "301a879da11105676f319f9080278a54b956d07f"
[[override]]
name = "contrib.go.opencensus.io/exporter/ocagent"
version = "v0.2.0"
# For dependency below: Refer to issue https://github.com/golang/dep/issues/1799
[[override]]
name = "gopkg.in/fsnotify.v1"
source = "https://github.com/fsnotify/fsnotify.git"
version="v1.4.7"