Gopkg.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. [prune]
  27. go-tests = true
  28. unused-packages = true
  29. [[constraint]]
  30. name = "github.com/urfave/cli"
  31. version = "1.20.0"
  32. [[constraint]]
  33. name = "github.com/go-ini/ini"
  34. version = "1.36.0"
  35. [[constraint]]
  36. name = "github.com/jinzhu/gorm"
  37. version = "1.9.1"
  38. [[constraint]]
  39. name = "github.com/mattn/go-sqlite3"
  40. version = "1.6.0"
  41. [[constraint]]
  42. name = "github.com/fsouza/go-dockerclient"
  43. version = "docker-1.9/go-1.4"
  44. [[constraint]]
  45. name = "github.com/flosch/pongo2"
  46. version = "3.0.0"
  47. [[constraint]]
  48. name = "github.com/oxequa/realize"
  49. version = "2.0.2"