blob: 842120f6d567cae5490eb413d91fd1d3d8fb7eaa [file] [log] [blame]
Zack Williamse940c7a2019-08-21 14:25:39 -07001# Gopkg.toml example
2#
3# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
4# for detailed Gopkg.toml documentation.
5#
6# required = ["github.com/user/thing/cmd/thing"]
7# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
8#
9# [[constraint]]
10# name = "github.com/user/project"
11# version = "1.0.0"
12#
13# [[constraint]]
14# name = "github.com/user/project2"
15# branch = "dev"
16# source = "github.com/myfork/project2"
17#
18# [[override]]
19# name = "github.com/x/y"
20# version = "2.4.0"
21#
22# [prune]
23# non-go = false
24# go-tests = true
25# unused-packages = true
26
27
28[[constraint]]
29 name = "github.com/fullstorydev/grpcurl"
30 version = "1.2.1"
31
32[[constraint]]
33 name = "github.com/golang/protobuf"
34 version = "1.3.1"
35
36[[constraint]]
37 name = "github.com/jessevdk/go-flags"
38 version = "1.4.0"
39
40[[constraint]]
41 name = "github.com/jhump/protoreflect"
42 version = "1.2.0"
43
44[[constraint]]
45 name = "google.golang.org/grpc"
46 version = "1.20.1"
47
48[[constraint]]
49 name = "gopkg.in/yaml.v2"
50 version = "2.2.2"
51
52[prune]
53 go-tests = true
54 unused-packages = true
55
56[[constraint]]
57 branch = "release-1.12"
58 name = "k8s.io/apimachinery"
59
60[[constraint]]
61 name = "k8s.io/client-go"
62 version = "11.0.0"