1
0

go.mod 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. module github.com/open-falcon/falcon-plus
  2. go 1.15
  3. require (
  4. github.com/astaxie/beego v1.8.3
  5. github.com/denisenkom/go-mssqldb v0.10.0 // indirect
  6. github.com/emirpasic/gods v1.9.0
  7. github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 // indirect
  8. github.com/garyburd/redigo v1.6.2
  9. github.com/gin-gonic/gin v1.7.0
  10. github.com/go-resty/resty v0.0.0-00010101000000-000000000000 // indirect
  11. github.com/go-sql-driver/mysql v1.6.0
  12. github.com/golang/protobuf v1.5.2 // indirect
  13. github.com/influxdata/influxdb v1.9.0
  14. github.com/jinzhu/gorm v0.0.0-20170703134954-2a1463811ee1
  15. github.com/jinzhu/inflection v0.0.0-20170102125226-1c35d901db3d // indirect
  16. github.com/jinzhu/now v1.1.2 // indirect
  17. github.com/json-iterator/go v1.1.11 // indirect
  18. github.com/juju/errors v0.0.0-20200330140219-3fe23663418f
  19. github.com/juju/testing v0.0.0-20210324180055-18c50b0c2098 // indirect
  20. github.com/lib/pq v1.10.2 // indirect
  21. github.com/masato25/resty v0.4.2-0.20161209040832-927c0e7d74a0
  22. github.com/masato25/yaag v0.0.0-20170704095552-00862ec4db8e
  23. github.com/mattn/go-isatty v0.0.13 // indirect
  24. github.com/mattn/go-sqlite3 v1.14.7 // indirect
  25. github.com/mindprince/gonvml v0.0.0-20190828220739-9ebdce4bb989
  26. github.com/niean/go-metrics-lite v0.0.0-20151230091537-b5d30971b578 // indirect
  27. github.com/niean/goperfcounter v0.0.0-20160108100052-24860a8d3fac
  28. github.com/niean/gotools v0.0.0-20151221085310-ff3f51fc5c60 // indirect
  29. github.com/oleiade/lane v1.0.1
  30. github.com/open-falcon/rrdlite v0.0.0-20170412122036-7d8646c85cc5
  31. github.com/prometheus/client_golang v1.5.1
  32. github.com/satori/go.uuid v1.2.1-0.20181028125025-b2ce2384e17b
  33. github.com/sirupsen/logrus v1.8.1
  34. github.com/smartystreets/goconvey v1.6.4
  35. github.com/spf13/cobra v1.1.3
  36. github.com/spf13/viper v1.7.0
  37. github.com/stretchr/testify v1.6.1 // indirect
  38. github.com/toolkits/cache v0.0.0-20190218093630-cfb07b7585e5
  39. github.com/toolkits/concurrent v0.0.0-20150624120057-a4371d70e3e3
  40. github.com/toolkits/conn_pool v0.0.0-20170512061817-2b758bec1177
  41. github.com/toolkits/consistent v0.0.0-20150827090850-a6f56a64d1b1
  42. github.com/toolkits/container v0.0.0-20151219225805-ba7d73adeaca
  43. github.com/toolkits/core v0.0.0-20141116054942-0ebf14900fe2
  44. github.com/toolkits/cron v0.0.0-20150624115642-bebc2953afa6
  45. github.com/toolkits/file v0.0.0-20160325033739-a5b3c5147e07
  46. github.com/toolkits/http v0.0.0-20150609122824-f3ac6e6c24be
  47. github.com/toolkits/net v0.0.0-20160910085801-3f39ab6fe3ce
  48. github.com/toolkits/nux v0.0.0-20200401110743-debb3829764a
  49. github.com/toolkits/proc v0.0.0-20170520054645-8c734d0eb018
  50. github.com/toolkits/slice v0.0.0-20141116085117-e44a80af2484
  51. github.com/toolkits/str v0.0.0-20160913030958-f82e0f0498cb
  52. github.com/toolkits/sys v0.0.0-20170615103026-1f33b217ffaf
  53. github.com/toolkits/time v0.0.0-20160524122720-c274716e8d7f
  54. github.com/ugorji/go v1.2.6 // indirect
  55. golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect
  56. golang.org/x/net v0.0.0-20210525063256-abc453219eb5 // indirect
  57. golang.org/x/sys v0.0.0-20210525143221-35b2ab0089ea // indirect
  58. gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
  59. gopkg.in/go-playground/validator.v8 v8.18.2 // indirect
  60. )
  61. replace github.com/go-resty/resty => gopkg.in/resty.v1 v1.11.0