go.mod 635 B

12345678910111213141516171819202122
  1. module github.com/mk6i/retro-aim-server
  2. go 1.22
  3. require (
  4. github.com/golang-migrate/migrate/v4 v4.17.1
  5. github.com/google/uuid v1.6.0
  6. github.com/kelseyhightower/envconfig v1.4.0
  7. github.com/mattn/go-sqlite3 v1.14.22
  8. github.com/mitchellh/go-wordwrap v1.0.1
  9. github.com/stretchr/testify v1.9.0
  10. )
  11. require (
  12. github.com/davecgh/go-spew v1.1.1 // indirect
  13. github.com/hashicorp/errwrap v1.1.0 // indirect
  14. github.com/hashicorp/go-multierror v1.1.1 // indirect
  15. github.com/pmezard/go-difflib v1.0.0 // indirect
  16. github.com/stretchr/objx v0.5.2 // indirect
  17. go.uber.org/atomic v1.11.0 // indirect
  18. gopkg.in/yaml.v3 v3.0.1 // indirect
  19. )