Gopkg.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. #ignored = [
  27. # "golang.org/x/sys/unix",
  28. # "golang.org/x/sys/windows",
  29. # "golang.org/x/crypto/ssh/terminal",
  30. #]
  31. [[constraint]]
  32. name = "github.com/jmespath/go-jmespath"
  33. version = "0.2.2"
  34. [[constraint]]
  35. name = "github.com/json-iterator/go"
  36. version = "1.0.4"
  37. [[constraint]]
  38. name = "github.com/satori/go.uuid"
  39. version = "1.1.0"
  40. [[constraint]]
  41. name = "github.com/sirupsen/logrus"
  42. version = "1.0.5"
  43. [[constraint]]
  44. name = "github.com/stretchr/testify"
  45. version = "1.1.4"
  46. [prune]
  47. go-tests = true
  48. unused-packages = true