go.mod 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. module git.familybaby.top/flight/utils
  2. go 1.18
  3. require (
  4. github.com/eclipse/paho.mqtt.golang v1.4.3
  5. github.com/satori/go.uuid v1.2.0
  6. github.com/sirupsen/logrus v1.9.3
  7. github.com/spf13/viper v1.18.2
  8. )
  9. require (
  10. github.com/fsnotify/fsnotify v1.7.0 // indirect
  11. github.com/gorilla/websocket v1.5.0 // indirect
  12. github.com/hashicorp/hcl v1.0.0 // indirect
  13. github.com/magiconair/properties v1.8.7 // indirect
  14. github.com/mitchellh/mapstructure v1.5.0 // indirect
  15. github.com/pelletier/go-toml/v2 v2.1.0 // indirect
  16. github.com/sagikazarmark/locafero v0.4.0 // indirect
  17. github.com/sagikazarmark/slog-shim v0.1.0 // indirect
  18. github.com/sourcegraph/conc v0.3.0 // indirect
  19. github.com/spf13/afero v1.11.0 // indirect
  20. github.com/spf13/cast v1.6.0 // indirect
  21. github.com/spf13/pflag v1.0.5 // indirect
  22. github.com/subosito/gotenv v1.6.0 // indirect
  23. go.uber.org/atomic v1.9.0 // indirect
  24. go.uber.org/multierr v1.9.0 // indirect
  25. golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
  26. golang.org/x/net v0.19.0 // indirect
  27. golang.org/x/sync v0.5.0 // indirect
  28. golang.org/x/sys v0.15.0 // indirect
  29. golang.org/x/text v0.14.0 // indirect
  30. gopkg.in/ini.v1 v1.67.0 // indirect
  31. gopkg.in/yaml.v3 v3.0.1 // indirect
  32. )