blob: a3f6ad1ba0f82b4df266c5686be5c7814cdb8fd6 [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]]
khenaidooac637102019-01-14 15:44:34 -050055 name = "github.com/gogo/protobuf"
56 version = "1.2.0"
57
58[[constraint]]
59 branch = "master"
60 name = "github.com/golang-collections/go-datastructures"
61
62[[constraint]]
63 name = "github.com/golang/protobuf"
William Kurkiandaa6bb22019-03-07 12:26:28 -050064 version = "=1.3.1"
khenaidooac637102019-01-14 15:44:34 -050065
66[[constraint]]
67 name = "github.com/google/uuid"
68 version = "1.1.0"
69
70[[constraint]]
71 name = "github.com/gyuho/goraph"
72 version = "2.0.0"
73
74[[constraint]]
75 name = "github.com/hashicorp/consul"
76 version = "1.4.0"
77
78[[constraint]]
khenaidooac637102019-01-14 15:44:34 -050079 name = "github.com/stretchr/testify"
80 version = "1.3.0"
81
David Bainbridge142516e2019-04-19 01:34:58 +000082[[constraint]]
83 name = "github.com/opencord/voltha-protos"
84 branch = "master"
85
Stephane Barbarie260a5632019-02-26 16:12:49 -050086[[override]]
khenaidooac637102019-01-14 15:44:34 -050087 name = "go.etcd.io/etcd"
Stephane Barbarie260a5632019-02-26 16:12:49 -050088 branch = "master"
khenaidooac637102019-01-14 15:44:34 -050089
90[[constraint]]
91 name = "go.uber.org/zap"
92 version = "1.9.1"
93
khenaidooffe076b2019-01-15 16:08:08 -050094[[override]]
khenaidooac637102019-01-14 15:44:34 -050095 branch = "master"
96 name = "golang.org/x/net"
97
khenaidooac637102019-01-14 15:44:34 -050098[[constraint]]
99 name = "google.golang.org/grpc"
100 version = "1.17.0"
101
102[[constraint]]
103 name = "gopkg.in/Shopify/sarama.v1"
104 version = "1.20.1"
105
106[prune]
107 go-tests = true
108 unused-packages = true
William Kurkiandaa6bb22019-03-07 12:26:28 -0500109
Abhilash S.Laxmeshwar068867d2019-03-15 16:55:19 +0530110[[prune.project]]
111 name = "github.com/opencord/voltha-protos"
112 unused-packages = false
113
114[[constraint]]
115 branch = "master"
116 name = "github.com/boljen/go-bitmap"