go.mod 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  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.13.0
  6. github.com/stretchr/testify v1.8.0
  7. goa.design/clue v0.9.0
  8. goa.design/goa/v3 v3.8.3
  9. gopkg.in/yaml.v3 v3.0.1
  10. )
  11. require (
  12. github.com/davecgh/go-spew v1.1.1 // indirect
  13. github.com/dimfeld/httptreemux/v5 v5.4.0 // indirect
  14. github.com/go-logfmt/logfmt v0.5.1 // indirect
  15. github.com/golang/protobuf v1.5.2 // indirect
  16. github.com/google/uuid v1.3.0 // indirect
  17. github.com/gorilla/websocket v1.5.0 // indirect
  18. github.com/hashicorp/errwrap v1.1.0 // indirect
  19. github.com/hashicorp/go-multierror v1.1.1 // indirect
  20. github.com/kr/text v0.2.0 // indirect
  21. github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
  22. github.com/pmezard/go-difflib v1.0.0 // indirect
  23. github.com/stretchr/objx v0.4.0 // indirect
  24. go.opentelemetry.io/otel v1.8.0 // indirect
  25. go.opentelemetry.io/otel/trace v1.8.0 // indirect
  26. golang.org/x/net v0.0.0-20220802222814-0bcc04d9c69b // indirect
  27. golang.org/x/sys v0.0.0-20220803195053-6e608f9ce704 // indirect
  28. golang.org/x/term v0.0.0-20220526004731-065cf7ba2467 // indirect
  29. golang.org/x/text v0.3.7 // indirect
  30. google.golang.org/genproto v0.0.0-20220803205849-8f55acc8769f // indirect
  31. google.golang.org/grpc v1.48.0 // indirect
  32. google.golang.org/protobuf v1.28.1 // indirect
  33. gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
  34. )