go.mod 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. module github.com/mk6i/retro-aim-server
  2. go 1.24.2
  3. require (
  4. github.com/golang-migrate/migrate/v4 v4.18.3
  5. github.com/google/uuid v1.6.0
  6. github.com/joho/godotenv v1.5.1
  7. github.com/kelseyhightower/envconfig v1.4.0
  8. github.com/mitchellh/go-wordwrap v1.0.1
  9. github.com/patrickmn/go-cache v2.1.0+incompatible
  10. github.com/stretchr/testify v1.10.0
  11. golang.org/x/net v0.39.0
  12. golang.org/x/sync v0.13.0
  13. golang.org/x/time v0.11.0
  14. modernc.org/sqlite v1.37.0
  15. )
  16. require (
  17. github.com/davecgh/go-spew v1.1.1 // indirect
  18. github.com/dustin/go-humanize v1.0.1 // indirect
  19. github.com/hashicorp/errwrap v1.1.0 // indirect
  20. github.com/hashicorp/go-multierror v1.1.1 // indirect
  21. github.com/mattn/go-isatty v0.0.20 // indirect
  22. github.com/ncruces/go-strftime v0.1.9 // indirect
  23. github.com/pmezard/go-difflib v1.0.0 // indirect
  24. github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
  25. github.com/stretchr/objx v0.5.2 // indirect
  26. go.uber.org/atomic v1.11.0 // indirect
  27. golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect
  28. golang.org/x/sys v0.32.0 // indirect
  29. gopkg.in/yaml.v3 v3.0.1 // indirect
  30. modernc.org/libc v1.65.0 // indirect
  31. modernc.org/mathutil v1.7.1 // indirect
  32. modernc.org/memory v1.10.0 // indirect
  33. )