khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [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/bsm/sarama-cluster" |
| 48 | version = "2.1.15" |
| 49 | |
| 50 | [[constraint]] |
| 51 | branch = "master" |
| 52 | name = "github.com/cevaris/ordered_map" |
| 53 | |
| 54 | [[constraint]] |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 55 | 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" |
| 64 | version = "1.2.0" |
| 65 | |
| 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]] |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 79 | name = "github.com/stretchr/testify" |
| 80 | version = "1.3.0" |
| 81 | |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 82 | [[constraint]] |
| 83 | name = "go.etcd.io/etcd" |
| 84 | version = "3.3.11" |
| 85 | |
| 86 | [[constraint]] |
| 87 | name = "go.uber.org/zap" |
| 88 | version = "1.9.1" |
| 89 | |
khenaidoo | ffe076b | 2019-01-15 16:08:08 -0500 | [diff] [blame] | 90 | [[override]] |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 91 | branch = "master" |
| 92 | name = "golang.org/x/net" |
| 93 | |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 94 | [[constraint]] |
| 95 | name = "google.golang.org/grpc" |
| 96 | version = "1.17.0" |
| 97 | |
| 98 | [[constraint]] |
| 99 | name = "gopkg.in/Shopify/sarama.v1" |
| 100 | version = "1.20.1" |
| 101 | |
| 102 | [prune] |
| 103 | go-tests = true |
| 104 | unused-packages = true |