Skip to content
Snippets Groups Projects
Gopkg.toml 1.71 KiB
Newer Older
Tom Wilkie's avatar
Tom Wilkie committed
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
#   name = "github.com/user/project"
#   version = "1.0.0"
#
# [[constraint]]
#   name = "github.com/user/project2"
#   branch = "dev"
#   source = "github.com/myfork/project2"
#
# [[override]]
#   name = "github.com/x/y"
#   version = "2.4.0"
#
# [prune]
#   non-go = false
#   go-tests = true
#   unused-packages = true

[[constraint]]
Tom Wilkie's avatar
Tom Wilkie committed
  name = "github.com/cortexproject/cortex"
Tom Wilkie's avatar
Tom Wilkie committed

[[constraint]]
  name = "github.com/weaveworks/common"
  source = "https://github.com/tomwilkie/weaveworks-common"
  branch = "server-listen-addr"
Tom Wilkie's avatar
Tom Wilkie committed

[[constraint]]
  name = "gopkg.in/fsnotify.v1"
  source = "https://github.com/fsnotify/fsnotify.git"

[[override]]
  name = "github.com/uber/jaeger-lib"
  version = "2.0.0"

[[override]]
  name = "github.com/uber/jaeger-client-go"
  branch = "master"

Tom Wilkie's avatar
Tom Wilkie committed
# For Prometheus

[[constraint]]
  branch = "master"
  name = "github.com/prometheus/prometheus"

[[constraint]]
  branch = "master"
  name = "github.com/prometheus/common"

[[override]]
  branch = "master"
  name = "github.com/prometheus/client_golang"
[[override]]
  name = "github.com/prometheus/tsdb"
  version = "0.6.1"
Tom Wilkie's avatar
Tom Wilkie committed
[prune]
  go-tests = true
  unused-packages = true

[[constraint]]
  name = "github.com/hpcloud/tail"

[[override]]
  name = "k8s.io/client-go"
  revision = "1a26190bd76a9017e289958b9fba936430aa3704"
[[constraint]]
  name = "github.com/stretchr/testify"
  version = "1.3.0"