go.mod 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. module github.com/mk6i/open-oscar-server
  2. go 1.26.2
  3. require (
  4. github.com/breign/goAMF3 v1.0.1-0.20250916173039-e43798221950
  5. github.com/golang-migrate/migrate/v4 v4.19.1
  6. github.com/google/uuid v1.6.0
  7. github.com/joho/godotenv v1.5.1
  8. github.com/kelseyhightower/envconfig v1.4.0
  9. github.com/mitchellh/go-wordwrap v1.0.1
  10. github.com/patrickmn/go-cache v2.1.0+incompatible
  11. github.com/stretchr/testify v1.11.1
  12. golang.org/x/net v0.48.0
  13. golang.org/x/sync v0.19.0
  14. golang.org/x/time v0.14.0
  15. modernc.org/sqlite v1.40.1
  16. )
  17. require (
  18. github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
  19. github.com/dustin/go-humanize v1.0.1 // indirect
  20. github.com/mattn/go-isatty v0.0.20 // indirect
  21. github.com/ncruces/go-strftime v1.0.0 // indirect
  22. github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
  23. github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
  24. github.com/stretchr/objx v0.5.3 // indirect
  25. golang.org/x/exp v0.0.0-20251125195548-87e1e737ad39 // indirect
  26. golang.org/x/sys v0.39.0 // indirect
  27. golang.org/x/tools v0.40.0 // indirect
  28. gopkg.in/yaml.v3 v3.0.1 // indirect
  29. modernc.org/libc v1.67.1 // indirect
  30. modernc.org/mathutil v1.7.1 // indirect
  31. modernc.org/memory v1.11.0 // indirect
  32. )