go.mod 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. module douglasthrift.net/presence
  2. go 1.22.0
  3. require (
  4. github.com/alecthomas/kong v1.8.1
  5. github.com/magefile/mage v1.15.0
  6. github.com/stretchr/testify v1.10.0
  7. goa.design/clue v1.1.0
  8. goa.design/goa/v3 v3.20.0
  9. gopkg.in/yaml.v3 v3.0.1
  10. )
  11. require (
  12. github.com/aws/smithy-go v1.22.2 // indirect
  13. github.com/davecgh/go-spew v1.1.1 // indirect
  14. github.com/go-chi/chi/v5 v5.2.1 // indirect
  15. github.com/go-logr/logr v1.4.2 // indirect
  16. github.com/google/uuid v1.6.0 // indirect
  17. github.com/gorilla/websocket v1.5.3 // indirect
  18. github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
  19. github.com/pmezard/go-difflib v1.0.0 // indirect
  20. go.opentelemetry.io/otel v1.34.0 // indirect
  21. go.opentelemetry.io/otel/trace v1.34.0 // indirect
  22. golang.org/x/net v0.35.0 // indirect
  23. golang.org/x/sys v0.30.0 // indirect
  24. golang.org/x/term v0.29.0 // indirect
  25. golang.org/x/text v0.22.0 // indirect
  26. google.golang.org/genproto/googleapis/rpc v0.0.0-20250219182151-9fdb1cabc7b2 // indirect
  27. google.golang.org/grpc v1.70.0 // indirect
  28. google.golang.org/protobuf v1.36.5 // indirect
  29. gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
  30. )