1
0

go.mod 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. module github.com/GwynethLlewelyn/gobot
  2. go 1.20
  3. require (
  4. github.com/Pallinder/go-randomdata v1.2.0
  5. github.com/fsnotify/fsnotify v1.6.0
  6. github.com/go-sql-driver/mysql v1.7.0
  7. github.com/gorilla/securecookie v1.1.1
  8. github.com/heatxsink/go-gravatar v0.0.0-20141217001839-ab2bd510cd12
  9. github.com/jaytaylor/html2text v0.0.0-20211105163654-bc68cce691ba
  10. github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
  11. github.com/spf13/viper v1.15.0
  12. golang.org/x/net v0.17.0
  13. gopkg.in/guregu/null.v3 v3.5.0
  14. gopkg.in/natefinch/lumberjack.v2 v2.2.1
  15. )
  16. require (
  17. github.com/hashicorp/hcl v1.0.0 // indirect
  18. github.com/magiconair/properties v1.8.7 // indirect
  19. github.com/mattn/go-runewidth v0.0.14 // indirect
  20. github.com/mitchellh/mapstructure v1.5.0 // indirect
  21. github.com/olekukonko/tablewriter v0.0.5 // indirect
  22. github.com/pelletier/go-toml/v2 v2.0.6 // indirect
  23. github.com/rivo/uniseg v0.4.4 // indirect
  24. github.com/spf13/afero v1.9.4 // indirect
  25. github.com/spf13/cast v1.5.0 // indirect
  26. github.com/spf13/jwalterweatherman v1.1.0 // indirect
  27. github.com/spf13/pflag v1.0.5 // indirect
  28. github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
  29. github.com/subosito/gotenv v1.4.2 // indirect
  30. golang.org/x/sys v0.13.0 // indirect
  31. golang.org/x/text v0.13.0 // indirect
  32. gopkg.in/ini.v1 v1.67.0 // indirect
  33. gopkg.in/yaml.v3 v3.0.1 // indirect
  34. )