go.mod 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. module smart-auth
  2. go 1.18
  3. require (
  4. github.com/fsnotify/fsnotify v1.4.9
  5. github.com/golang/protobuf v1.3.5
  6. github.com/jaryhe/gopkgs v0.0.0-20200905032310-2bcd57283d30
  7. github.com/jinzhu/gorm v1.9.12
  8. github.com/json-iterator/go v1.1.9
  9. github.com/spf13/viper v1.6.2
  10. go.uber.org/zap v1.14.1
  11. google.golang.org/grpc v1.28.0
  12. )
  13. require (
  14. github.com/go-sql-driver/mysql v1.4.1 // indirect
  15. github.com/hashicorp/hcl v1.0.0 // indirect
  16. github.com/jinzhu/inflection v1.0.0 // indirect
  17. github.com/magiconair/properties v1.8.1 // indirect
  18. github.com/mitchellh/mapstructure v1.1.2 // indirect
  19. github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
  20. github.com/modern-go/reflect2 v1.0.1 // indirect
  21. github.com/pelletier/go-toml v1.2.0 // indirect
  22. github.com/sony/sonyflake v1.0.0 // indirect
  23. github.com/spf13/afero v1.1.2 // indirect
  24. github.com/spf13/cast v1.3.0 // indirect
  25. github.com/spf13/jwalterweatherman v1.0.0 // indirect
  26. github.com/spf13/pflag v1.0.3 // indirect
  27. github.com/subosito/gotenv v1.2.0 // indirect
  28. go.uber.org/atomic v1.6.0 // indirect
  29. go.uber.org/multierr v1.5.0 // indirect
  30. golang.org/x/net v0.0.0-20200226121028-0de0cce0169b // indirect
  31. golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae // indirect
  32. golang.org/x/text v0.3.2 // indirect
  33. google.golang.org/appengine v1.6.5 // indirect
  34. google.golang.org/genproto v0.0.0-20200108215221-bd8f9a0ef82f // indirect
  35. gopkg.in/ini.v1 v1.51.0 // indirect
  36. gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
  37. gopkg.in/yaml.v2 v2.2.8 // indirect
  38. )