blob: 3b2efd243458ae29d683e712acd2de901dd44f77 [file] [log] [blame]
khenaidooac637102019-01-14 15:44:34 -05001#
2# Copyright 2019-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# Gopkg.toml example
17#
18# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
19# for detailed Gopkg.toml documentation.
20#
21# required = ["github.com/user/thing/cmd/thing"]
22# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
23#
24# [[constraint]]
25# name = "github.com/user/project"
26# version = "1.0.0"
27#
28# [[constraint]]
29# name = "github.com/user/project2"
30# branch = "dev"
31# source = "github.com/myfork/project2"
32#
33# [[override]]
34# name = "github.com/x/y"
35# version = "2.4.0"
36#
37# [prune]
38# non-go = false
39# go-tests = true
40# unused-packages = true
41
42required = [
43 "github.com/golang/protobuf/protoc-gen-go",
44]
45
46[[constraint]]
47 name = "github.com/bsm/sarama-cluster"
48 version = "2.1.15"
49
50[[constraint]]
51 branch = "master"
52 name = "github.com/cevaris/ordered_map"
53
54[[constraint]]
55 name = "github.com/confluentinc/confluent-kafka-go"
56 version = "0.11.6"
57
58[[constraint]]
59 branch = "master"
60 name = "github.com/coreswitch/log"
61
62[[constraint]]
63 name = "github.com/gogo/protobuf"
64 version = "1.2.0"
65
66[[constraint]]
67 branch = "master"
68 name = "github.com/golang-collections/go-datastructures"
69
70[[constraint]]
71 name = "github.com/golang/protobuf"
72 version = "1.2.0"
73
74[[constraint]]
75 name = "github.com/google/uuid"
76 version = "1.1.0"
77
78[[constraint]]
79 name = "github.com/gyuho/goraph"
80 version = "2.0.0"
81
82[[constraint]]
83 name = "github.com/hashicorp/consul"
84 version = "1.4.0"
85
86[[constraint]]
87 name = "github.com/rs/zerolog"
88 version = "1.11.0"
89
90[[constraint]]
91 name = "github.com/sirupsen/logrus"
92 version = "1.3.0"
93
94[[constraint]]
95 name = "github.com/stretchr/testify"
96 version = "1.3.0"
97
98[[override]]
99 name = "github.com/coreos/etcd"
100 version = "3.3.11"
101
102[[constraint]]
103 name = "go.etcd.io/etcd"
104 version = "3.3.11"
105
106[[constraint]]
107 name = "go.uber.org/zap"
108 version = "1.9.1"
109
khenaidooffe076b2019-01-15 16:08:08 -0500110[[override]]
khenaidooac637102019-01-14 15:44:34 -0500111 branch = "master"
112 name = "golang.org/x/net"
113
khenaidooffe076b2019-01-15 16:08:08 -0500114[[override]]
khenaidooac637102019-01-14 15:44:34 -0500115 branch = "master"
116 name = "google.golang.org/genproto"
117
118[[constraint]]
119 name = "google.golang.org/grpc"
120 version = "1.17.0"
121
122[[constraint]]
123 name = "gopkg.in/Shopify/sarama.v1"
124 version = "1.20.1"
125
126[prune]
127 go-tests = true
128 unused-packages = true