go.mod 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. module douglasthrift.net/presence
  2. go 1.17
  3. require (
  4. github.com/alecthomas/kong v0.6.2-0.20220728061507-f48da244f543
  5. github.com/magefile/mage v1.14.0
  6. github.com/stretchr/testify v1.8.0
  7. goa.design/clue v0.11.0
  8. goa.design/goa/v3 v3.8.5
  9. gopkg.in/yaml.v3 v3.0.1
  10. )
  11. require (
  12. github.com/aws/smithy-go v1.13.2 // indirect
  13. github.com/davecgh/go-spew v1.1.1 // indirect
  14. github.com/dimfeld/httptreemux/v5 v5.4.0 // indirect
  15. github.com/go-logfmt/logfmt v0.5.1 // indirect
  16. github.com/golang/protobuf v1.5.2 // indirect
  17. github.com/google/uuid v1.3.0 // indirect
  18. github.com/gorilla/websocket v1.5.0 // indirect
  19. github.com/hashicorp/errwrap v1.1.0 // indirect
  20. github.com/hashicorp/go-multierror v1.1.1 // indirect
  21. github.com/kr/text v0.2.0 // indirect
  22. github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
  23. github.com/pmezard/go-difflib v1.0.0 // indirect
  24. github.com/stretchr/objx v0.4.0 // indirect
  25. go.opentelemetry.io/otel v1.9.0 // indirect
  26. go.opentelemetry.io/otel/trace v1.9.0 // indirect
  27. golang.org/x/net v0.0.0-20220822230855-b0a4917ee28c // indirect
  28. golang.org/x/sys v0.0.0-20220818161305-2296e01440c6 // indirect
  29. golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect
  30. golang.org/x/text v0.3.7 // indirect
  31. google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc // indirect
  32. google.golang.org/grpc v1.49.0 // indirect
  33. google.golang.org/protobuf v1.28.1 // indirect
  34. gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
  35. )