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.

99 lines
2.0 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. # [[constraint]]
  14. # name = "github.com/user/project2"
  15. # branch = "dev"
  16. # source = "github.com/myfork/project2"
  17. #
  18. # [[override]]
  19. # name = "github.com/x/y"
  20. # version = "2.4.0"
  21. #
  22. # [prune]
  23. # non-go = false
  24. # go-tests = true
  25. # unused-packages = true
  26. [[constraint]]
  27. name = "github.com/ebuchman/fail-test"
  28. branch = "master"
  29. [[constraint]]
  30. name = "github.com/fortytw2/leaktest"
  31. branch = "master"
  32. [[constraint]]
  33. name = "github.com/go-kit/kit"
  34. version = "~0.6.0"
  35. [[constraint]]
  36. name = "github.com/gogo/protobuf"
  37. version = "~1.0.0"
  38. [[constraint]]
  39. name = "github.com/golang/protobuf"
  40. version = "~1.0.0"
  41. [[constraint]]
  42. name = "github.com/gorilla/websocket"
  43. version = "~1.2.0"
  44. [[constraint]]
  45. name = "github.com/pkg/errors"
  46. version = "~0.8.0"
  47. [[constraint]]
  48. name = "github.com/rcrowley/go-metrics"
  49. branch = "master"
  50. [[constraint]]
  51. name = "github.com/spf13/cobra"
  52. version = "~0.0.1"
  53. [[constraint]]
  54. name = "github.com/spf13/viper"
  55. version = "~1.0.0"
  56. [[constraint]]
  57. name = "github.com/stretchr/testify"
  58. version = "~1.2.1"
  59. [[constraint]]
  60. name = "github.com/tendermint/go-amino"
  61. version = "~0.10.1"
  62. [[override]]
  63. name = "github.com/tendermint/tmlibs"
  64. version = "~0.9.0"
  65. [[constraint]]
  66. name = "google.golang.org/grpc"
  67. version = "~1.7.3"
  68. # this got updated and broke, so locked to an old working commit ...
  69. [[override]]
  70. name = "google.golang.org/genproto"
  71. revision = "7fd901a49ba6a7f87732eb344f6e3c5b19d1b200"
  72. [prune]
  73. go-tests = true
  74. unused-packages = true
  75. [[constraint]]
  76. name = "github.com/prometheus/client_golang"
  77. version = "0.8.0"
  78. [[constraint]]
  79. branch = "master"
  80. name = "golang.org/x/net"