blob: b29cf9a8b5ba7da6c31578293fa250d00361a33c [file] [log] [blame]
Matteo Scandolo1f49bf52018-11-20 13:56:45 -08001# Copyright 2018-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
16
17# Gopkg.toml example
18#
19# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
20# for detailed Gopkg.toml documentation.
21#
22# required = ["github.com/user/thing/cmd/thing"]
23# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
24#
25# [[constraint]]
26# name = "github.com/user/project"
27# version = "1.0.0"
28#
29# [[constraint]]
30# name = "github.com/user/project2"
31# branch = "dev"
32# source = "github.com/myfork/project2"
33#
34# [[override]]
35# name = "github.com/x/y"
36# version = "2.4.0"
37#
38# [prune]
39# non-go = false
40# go-tests = true
41# unused-packages = true
42
43
44[[constraint]]
45 name = "github.com/Sirupsen/logrus"
46 version = "1.2.0"
47
48[[constraint]]
49 name = "github.com/gorilla/mux"
50 version = "1.6.2"
51
52[[constraint]]
53 name = "github.com/kelseyhightower/envconfig"
54 version = "1.3.0"
55
56[prune]
57 go-tests = true
58 unused-packages = true