blob: be6f7606f8ccbbdc479e6a9dccafaa6ac6d4500e [file] [log] [blame]
Ganesh Bhure8bb19822019-06-10 10:56:22 +05301# Copyright 2019-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15# Gopkg.toml example
16#
17# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
18# for detailed Gopkg.toml documentation.
19#
20# required = ["github.com/user/thing/cmd/thing"]
21# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
22#
23# [[constraint]]
24# name = "github.com/user/project"
25# version = "1.0.0"
26#
27# [[constraint]]
28# name = "github.com/user/project2"
29# branch = "dev"
30# source = "github.com/myfork/project2"
31#
32# [[override]]
33# name = "github.com/x/y"
34# version = "2.4.0"
35#
36# [prune]
37# non-go = false
38# go-tests = true
39# unused-packages = true
40
41
42[[constraint]]
43 name = "github.com/Shopify/sarama"
44 version = "1.22.1"
45
46[[constraint]]
47 branch = "master"
48 name = "github.com/gfremex/logrus-kafka-hook"
49
50[[constraint]]
51 name = "github.com/prometheus/client_golang"
52 version = "0.9.4"
53
54[[constraint]]
55 name = "github.com/sirupsen/logrus"
56 version = "1.4.2"
57
58[[constraint]]
59 name = "gopkg.in/yaml.v2"
60 version = "2.2.2"
61
62[prune]
63 go-tests = true
64 unused-packages = true
kesavand6753e5e2020-04-28 03:34:21 -040065
66[[constraint]]
67 name = "github.com/golang/protobuf"
68 version = "1.3.2"