https://github.com/tendermint/tendermint
Raw File
Tip revision: a2930cd7233f04f5a651020669289296545e70dc authored by Ethan Buchman on 17 April 2018, 08:59:36 UTC
Merge pull request #1474 from tendermint/release/v0.19.0
Tip revision: a2930cd
Gopkg.toml
# 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]]
  name = "github.com/ebuchman/fail-test"
  branch = "master"

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

[[constraint]]
  name = "github.com/go-kit/kit"
  version = "~0.6.0"

[[constraint]]
  name = "github.com/gogo/protobuf"
  version = "~1.0.0"

[[constraint]]
  name = "github.com/golang/protobuf"
  version = "~1.0.0"

[[constraint]]
  name = "github.com/gorilla/websocket"
  version = "~1.2.0"

[[constraint]]
  name = "github.com/pkg/errors"
  version = "~0.8.0"

[[constraint]]
  name = "github.com/rcrowley/go-metrics"
  branch = "master"

[[constraint]]
  name = "github.com/spf13/cobra"
  version = "~0.0.1"

[[constraint]]
  name = "github.com/spf13/viper"
  version = "~1.0.0"

[[constraint]]
  name = "github.com/stretchr/testify"
  version = "~1.2.1"

[[constraint]]
  name = "github.com/tendermint/abci"
  version = "~0.10.3"

[[constraint]]
  name = "github.com/tendermint/go-crypto"
  version = "~0.6.2"

[[constraint]]
  name = "github.com/tendermint/go-amino"
  version = "~0.9.6"

[[constraint]]
  name = "github.com/tendermint/tmlibs"
  version = "~0.8.2-rc0"

[[constraint]]
  name = "google.golang.org/grpc"
  version = "~1.7.3"

[prune]
  go-tests = true
  unused-packages = true
back to top