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.

122 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. # Allow only patch releases for serialization libraries
  24. [[constraint]]
  25. name = "github.com/tendermint/go-amino"
  26. version = "~0.14.1"
  27. [[constraint]]
  28. name = "github.com/gogo/protobuf"
  29. version = "~1.1.1"
  30. [[constraint]]
  31. name = "github.com/golang/protobuf"
  32. version = "~1.1.0"
  33. # Allow only minor releases for other libraries
  34. [[constraint]]
  35. name = "github.com/go-kit/kit"
  36. version = "^0.6.0"
  37. [[constraint]]
  38. name = "github.com/gorilla/websocket"
  39. version = "^1.2.0"
  40. [[constraint]]
  41. name = "github.com/rs/cors"
  42. version = "^1.6.0"
  43. [[constraint]]
  44. name = "github.com/pkg/errors"
  45. version = "^0.8.0"
  46. [[constraint]]
  47. name = "github.com/spf13/cobra"
  48. version = "^0.0.1"
  49. [[constraint]]
  50. name = "github.com/spf13/viper"
  51. version = "^1.0.0"
  52. [[constraint]]
  53. name = "github.com/stretchr/testify"
  54. version = "^1.2.1"
  55. [[constraint]]
  56. name = "google.golang.org/grpc"
  57. version = "^1.13.0"
  58. [[constraint]]
  59. name = "github.com/fortytw2/leaktest"
  60. version = "^1.2.0"
  61. [[constraint]]
  62. name = "github.com/prometheus/client_golang"
  63. version = "^0.9.1"
  64. # we use the secp256k1 implementation:
  65. [[constraint]]
  66. name = "github.com/ethereum/go-ethereum"
  67. version = "^v1.8.21"
  68. # Prevent dep from pruning build scripts and codegen templates
  69. # note: this leaves the whole go-ethereum package in vendor
  70. # can be removed when https://github.com/golang/dep/issues/1847 is resolved
  71. [[prune.project]]
  72. name = "github.com/ethereum/go-ethereum"
  73. unused-packages = false
  74. ###################################
  75. ## Some repos dont have releases.
  76. ## Pin to revision
  77. [[constraint]]
  78. name = "github.com/btcsuite/btcd"
  79. revision = "ed77733ec07dfc8a513741138419b8d9d3de9d2d"
  80. [[constraint]]
  81. name = "golang.org/x/crypto"
  82. revision = "505ab145d0a99da450461ae2c1a9f6cd10d1f447"
  83. [[override]]
  84. name = "github.com/jmhodges/levigo"
  85. revision = "c42d9e0ca023e2198120196f842701bb4c55d7b9"
  86. # last revision used by go-crypto
  87. [[constraint]]
  88. name = "github.com/btcsuite/btcutil"
  89. revision = "d4cc87b860166d00d6b5b9e0d3b3d71d6088d4d4"
  90. [[constraint]]
  91. name = "github.com/rcrowley/go-metrics"
  92. revision = "e2704e165165ec55d062f5919b4b29494e9fa790"
  93. [[constraint]]
  94. name = "golang.org/x/net"
  95. revision = "292b43bbf7cb8d35ddf40f8d5100ef3837cced3f"
  96. [prune]
  97. go-tests = true
  98. unused-packages = true