You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
2.8 KiB

  1. # Gopkg.toml example
  2. #
  3. # Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
  4. # for detailed Gopkg.toml documentation.
  5. #
  6. # required = ["github.com/user/thing/cmd/thing"]
  7. # ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
  8. #
  9. # [[constraint]]
  10. # name = "github.com/user/project"
  11. # version = "1.0.0"
  12. #
  13. # [[override]]
  14. # name = "github.com/x/y"
  15. # version = "2.4.0"
  16. #
  17. # [prune]
  18. # non-go = false
  19. # go-tests = true
  20. # unused-packages = true
  21. #
  22. ###########################################################
  23. # NOTE: All packages should be pinned to specific versions.
  24. # Packages without releases must pin to a commit.
  25. [[constraint]]
  26. name = "github.com/go-kit/kit"
  27. version = "=0.6.0"
  28. [[constraint]]
  29. name = "github.com/gogo/protobuf"
  30. version = "=1.1.1"
  31. [[constraint]]
  32. name = "github.com/golang/protobuf"
  33. version = "=1.1.0"
  34. [[constraint]]
  35. name = "github.com/gorilla/websocket"
  36. version = "=1.2.0"
  37. [[constraint]]
  38. name = "github.com/pkg/errors"
  39. version = "=0.8.0"
  40. [[constraint]]
  41. name = "github.com/spf13/cobra"
  42. version = "=0.0.1"
  43. [[constraint]]
  44. name = "github.com/spf13/viper"
  45. version = "=1.0.0"
  46. [[constraint]]
  47. name = "github.com/stretchr/testify"
  48. version = "=1.2.1"
  49. [[constraint]]
  50. name = "github.com/tendermint/go-amino"
  51. version = "=v0.10.1"
  52. [[constraint]]
  53. name = "google.golang.org/grpc"
  54. version = "=1.13.0"
  55. [[constraint]]
  56. name = "github.com/fortytw2/leaktest"
  57. version = "=1.2.0"
  58. ###################################
  59. ## Some repos dont have releases.
  60. ## Pin to revision
  61. ## We can remove this one by updating protobuf to v1.1.0
  62. ## but then the grpc tests break with
  63. #--- FAIL: TestBroadcastTx (0.01s)
  64. #panic: message/group field common.KVPair:bytes without pointer [recovered]
  65. # panic: message/group field common.KVPair:bytes without pointer
  66. #
  67. # ...
  68. #
  69. # github.com/tendermint/tendermint/rpc/grpc_test.TestBroadcastTx(0xc420a5ab40)
  70. # /go/src/github.com/tendermint/tendermint/rpc/grpc/grpc_test.go:29 +0x141
  71. [[override]]
  72. name = "google.golang.org/genproto"
  73. revision = "7fd901a49ba6a7f87732eb344f6e3c5b19d1b200"
  74. [[override]]
  75. name = "github.com/jmhodges/levigo"
  76. revision = "c42d9e0ca023e2198120196f842701bb4c55d7b9"
  77. [[constraint]]
  78. name = "github.com/ebuchman/fail-test"
  79. revision = "95f809107225be108efcf10a3509e4ea6ceef3c4"
  80. # last revision used by go-crypto
  81. [[constraint]]
  82. name = "github.com/btcsuite/btcutil"
  83. revision = "d4cc87b860166d00d6b5b9e0d3b3d71d6088d4d4"
  84. # Haven't made a release since 2016.
  85. [[constraint]]
  86. name = "github.com/prometheus/client_golang"
  87. revision = "ae27198cdd90bf12cd134ad79d1366a6cf49f632"
  88. [[constraint]]
  89. name = "github.com/rcrowley/go-metrics"
  90. revision = "e2704e165165ec55d062f5919b4b29494e9fa790"
  91. [[constraint]]
  92. name = "golang.org/x/net"
  93. revision = "292b43bbf7cb8d35ddf40f8d5100ef3837cced3f"
  94. [prune]
  95. go-tests = true
  96. unused-packages = true