go.mod 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. module github.com/flet-dev/flet/server
  2. go 1.16
  3. require (
  4. cloud.google.com/go/compute v1.19.1 // indirect
  5. cloud.google.com/go/iam v1.0.0 // indirect
  6. cloud.google.com/go/secretmanager v1.10.0
  7. github.com/bytedance/sonic v1.8.8 // indirect
  8. github.com/gin-gonic/contrib v0.0.0-20221130124618-7e01895a63f2
  9. github.com/gin-gonic/gin v1.9.0
  10. github.com/go-playground/validator/v10 v10.12.0 // indirect
  11. github.com/goccy/go-json v0.10.2 // indirect
  12. github.com/gomodule/redigo v1.8.9
  13. github.com/google/uuid v1.3.0
  14. github.com/gorilla/websocket v1.5.0
  15. github.com/gosimple/slug v1.13.1
  16. github.com/klauspost/cpuid/v2 v2.2.4 // indirect
  17. github.com/leodido/go-urn v1.2.3 // indirect
  18. github.com/mattn/go-isatty v0.0.18 // indirect
  19. github.com/pelletier/go-toml/v2 v2.0.7 // indirect
  20. github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5
  21. github.com/sirupsen/logrus v1.9.0
  22. github.com/spf13/afero v1.9.5 // indirect
  23. github.com/spf13/cobra v1.7.0
  24. github.com/spf13/viper v1.15.0
  25. github.com/ugorji/go/codec v1.2.11 // indirect
  26. github.com/wangjia184/sortedset v0.0.0-20220209072355-af6d6d227aa7
  27. golang.org/x/arch v0.3.0 // indirect
  28. golang.org/x/crypto v0.8.0 // indirect
  29. google.golang.org/api v0.120.0 // indirect
  30. google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1
  31. )