go.mod 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. module boiler-go
  2. go 1.19
  3. require (
  4. github.com/dabory/abango-rest v0.0.0-20230314114831-dfa6bf479081
  5. github.com/go-xorm/xorm v0.7.9
  6. github.com/google/uuid v1.3.0
  7. github.com/labstack/echo v3.3.10+incompatible
  8. github.com/microcosm-cc/bluemonday v1.0.23
  9. github.com/tidwall/buntdb v1.2.10
  10. gopkg.in/robfig/cron.v2 v2.0.0-20150107220207-be2e0b0deed5
  11. )
  12. require (
  13. github.com/aymerick/douceur v0.2.0 // indirect
  14. github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
  15. github.com/go-sql-driver/mysql v1.4.1 // indirect
  16. github.com/gorilla/css v1.0.0 // indirect
  17. github.com/labstack/gommon v0.4.0 // indirect
  18. github.com/mattn/go-colorable v0.1.11 // indirect
  19. github.com/mattn/go-isatty v0.0.14 // indirect
  20. github.com/tidwall/btree v1.4.2 // indirect
  21. github.com/tidwall/gjson v1.14.3 // indirect
  22. github.com/tidwall/grect v0.1.4 // indirect
  23. github.com/tidwall/match v1.1.1 // indirect
  24. github.com/tidwall/pretty v1.2.0 // indirect
  25. github.com/tidwall/rtred v0.1.2 // indirect
  26. github.com/tidwall/tinyqueue v0.1.1 // indirect
  27. github.com/valyala/bytebufferpool v1.0.0 // indirect
  28. github.com/valyala/fasttemplate v1.2.2 // indirect
  29. golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c // indirect
  30. golang.org/x/net v0.8.0 // indirect
  31. golang.org/x/sys v0.6.0 // indirect
  32. google.golang.org/appengine v1.6.0 // indirect
  33. xorm.io/builder v0.3.6 // indirect
  34. xorm.io/core v0.7.2-0.20190928055935-90aeac8d08eb // indirect
  35. )