Gopkg.toml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # Gopkg.toml example
  2. #
  3. # Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
  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/NYTimes/gziphandler"
  28. version = "1.0.1"
  29. [[constraint]]
  30. name = "github.com/gdamore/tcell"
  31. version = "1.1.0"
  32. [[constraint]]
  33. name = "github.com/go-errors/errors"
  34. version = "1.0.1"
  35. [[constraint]]
  36. name = "github.com/gorilla/websocket"
  37. version = "1.4.0"
  38. [[constraint]]
  39. name = "github.com/onsi/ginkgo"
  40. version = "1.6.0"
  41. [[constraint]]
  42. name = "github.com/onsi/gomega"
  43. version = "1.4.2"
  44. [[constraint]]
  45. branch = "master"
  46. name = "github.com/shibukawa/configdir"
  47. [[constraint]]
  48. name = "github.com/spf13/pflag"
  49. version = "1.0.3"
  50. [[constraint]]
  51. name = "github.com/spf13/viper"
  52. version = "1.2.1"
  53. [[constraint]]
  54. name = "github.com/ulule/limiter"
  55. version = "2.2.1"
  56. [[constraint]]
  57. branch = "master"
  58. name = "golang.org/x/sys"
  59. [[override]]
  60. source = "https://github.com/fsnotify/fsnotify/archive/v1.4.7.tar.gz"
  61. name = "gopkg.in/fsnotify.v1"
  62. [prune]
  63. go-tests = true
  64. unused-packages = true