forked from jkatz/postgres-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gopkg.toml
74 lines (58 loc) · 1.4 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
ignored = [
# The following four packages are imported by the testing directory which is
# a separate Go module.
"github.com/jackc/pgx/v4/*",
"github.com/stretchr/testify/*",
"k8s.io/apiserver/pkg/storage/names",
"k8s.io/client-go/tools/portforward",
]
required = [
"k8s.io/code-generator",
]
[[constraint]]
name = "github.com/evanphx/json-patch"
version = "4.6.0"
[[constraint]]
name = "github.com/fatih/color"
version = "1.9.0"
[[constraint]]
name = "github.com/gorilla/mux"
version = "1.7.4"
[[constraint]]
name = "github.com/nsqio/go-nsq"
version = "1.0.8"
[[constraint]]
name = "github.com/robfig/cron"
version = "3.0.1"
[[constraint]]
name = "github.com/sirupsen/logrus"
version = "1.4.2"
[[constraint]]
name = "github.com/spf13/cobra"
version = "0.0.5"
[[constraint]]
name = "github.com/spf13/pflag"
version = "1.0.5"
[[constraint]]
branch = "master"
name = "golang.org/x/crypto"
[[constraint]]
name = "k8s.io/api"
version = "0.17.4"
[[constraint]]
name = "k8s.io/apimachinery"
version = "0.17.4"
[[constraint]]
name = "k8s.io/client-go"
version = "0.17.4"
[[constraint]]
name = "k8s.io/code-generator"
version = "0.17.4"
# The following override is for generating the docs using the
# "generatedocs" program in pgo
[[override]]
name = "github.com/russross/blackfriday"
version = "1.5.2"
[prune]
go-tests = true
unused-packages = true