Scott Baker | 2d89798 | 2019-09-24 11:50:08 -0700 | [diff] [blame^] | 1 | # |
| 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 | |
| 42 | required = [ |
| 43 | "github.com/golang/protobuf/protoc-gen-go", |
| 44 | ] |
| 45 | |
| 46 | [[constraint]] |
| 47 | name = "github.com/gogo/protobuf" |
| 48 | version = "1.2.0" |
| 49 | |
| 50 | [[constraint]] |
| 51 | name = "github.com/golang/protobuf" |
| 52 | version = "=1.3.1" |
| 53 | |
| 54 | [[constraint]] |
| 55 | name = "github.com/opencord/voltha-protos" |
| 56 | version = "1.0.1" |
| 57 | |
| 58 | [[override]] |
| 59 | name = "go.etcd.io/etcd" |
| 60 | branch = "master" |
| 61 | |
| 62 | [[override]] |
| 63 | branch = "master" |
| 64 | name = "golang.org/x/net" |
| 65 | |
| 66 | [prune] |
| 67 | go-tests = true |
| 68 | unused-packages = true |
| 69 | |
| 70 | [[prune.project]] |
| 71 | name = "github.com/opencord/voltha-protos" |
| 72 | unused-packages = false |