forked from kubernetes-sigs/kind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gopkg.toml
45 lines (36 loc) · 1.02 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
# dev-time dependencies
# ensure they aren't pruned
required = [
"github.com/jteeuwen/go-bindata/go-bindata",
"github.com/golang/dep/cmd/dep",
"github.com/golang/lint/golint",
"k8s.io/code-generator/cmd/conversion-gen",
"k8s.io/code-generator/cmd/defaulter-gen",
"k8s.io/code-generator/cmd/deepcopy-gen",
]
# prune out unused content from vendor
[prune]
go-tests = true
non-go = true
unused-packages = true
# Don't prune helper scripts from code-generator
[[prune.project]]
name = "k8s.io/code-generator"
unused-packages = false
[[override]]
name = "github.com/jteeuwen/go-bindata"
# latest, unlikely to change as go-bindata is no longer maintained
revision = "6025e8de665b31fa74ab1a66f2cddd8c0abf887e"
[[override]]
name = "github.com/golang/dep"
version = "v0.5.0"
# normal constraints below
[[constraint]]
name = "github.com/pkg/errors"
version = "0.8.0"
[[constraint]]
name = "github.com/sirupsen/logrus"
version = "1.0.6"
[[constraint]]
name = "github.com/spf13/cobra"
version = "0.0.3"