forked from kubernetes-sigs/kubebuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gopkg.toml
25 lines (21 loc) · 759 Bytes
/
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
# Uncomment to update deps with dep tool
required = [
"github.com/emicklei/go-restful",
"github.com/go-openapi/spec",
"github.com/onsi/ginkgo", # for integration testing
"github.com/spf13/pflag",
"k8s.io/client-go/plugin/pkg/client/auth/gcp", # for development against gcp
"k8s.io/code-generator/cmd/deepcopy-gen", # for go generate
"sigs.k8s.io/testing_frameworks/integration", # for integration testing
]
[[constraint]]
name = "sigs.k8s.io/controller-tools"
branch = "master"
# 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"
[prune]
non-go = true
go-tests = true