Gopkg.toml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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/Sirupsen/logrus"
  28. version = "1.0.4"
  29. [[constraint]]
  30. name = "github.com/asaskevich/govalidator"
  31. version = "8.0.0"
  32. [[constraint]]
  33. branch = "master"
  34. name = "github.com/bouk/monkey"
  35. [[constraint]]
  36. name = "github.com/coreos/go-iptables"
  37. version = "0.2.0"
  38. [[constraint]]
  39. branch = "master"
  40. name = "github.com/go-openapi/runtime"
  41. [[constraint]]
  42. branch = "master"
  43. name = "github.com/golang/protobuf"
  44. [[constraint]]
  45. name = "github.com/google/uuid"
  46. version = "0.2.0"
  47. [[constraint]]
  48. name = "github.com/grpc-ecosystem/grpc-gateway"
  49. version = "1.3.1"
  50. [[constraint]]
  51. name = "github.com/jinzhu/gorm"
  52. version = "1.0.0"
  53. [[constraint]]
  54. branch = "master"
  55. name = "github.com/olekukonko/tablewriter"
  56. [[constraint]]
  57. name = "github.com/urfave/cli"
  58. version = "1.20.0"
  59. [[constraint]]
  60. branch = "master"
  61. name = "golang.org/x/net"
  62. [[constraint]]
  63. branch = "master"
  64. name = "google.golang.org/genproto"
  65. [[constraint]]
  66. name = "google.golang.org/grpc"
  67. version = "1.9.2"
  68. [[constraint]]
  69. name = "gopkg.in/hlandau/passlib.v1"
  70. version = "1.0.9"
  71. [prune]
  72. go-tests = true
  73. unused-packages = true