go.mod 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. module maunium.net/go/mautrix-whatsapp
  2. go 1.19
  3. require (
  4. github.com/chai2010/webp v1.1.1
  5. github.com/gorilla/mux v1.8.0
  6. github.com/gorilla/websocket v1.5.0
  7. github.com/lib/pq v1.10.9
  8. github.com/mattn/go-sqlite3 v1.14.17
  9. github.com/prometheus/client_golang v1.16.0
  10. github.com/rs/zerolog v1.30.0
  11. github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
  12. github.com/tidwall/gjson v1.14.4
  13. go.mau.fi/util v0.0.0-20230805161919-cf42c11d39c3
  14. go.mau.fi/whatsmeow v0.0.0-20230808115051-056c25e4b485
  15. golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1
  16. golang.org/x/image v0.9.0
  17. golang.org/x/net v0.12.0
  18. google.golang.org/protobuf v1.31.0
  19. maunium.net/go/maulogger/v2 v2.4.1
  20. maunium.net/go/mautrix v0.15.5-0.20230805162445-fd1cdd8c9457
  21. )
  22. require (
  23. filippo.io/edwards25519 v1.0.0 // indirect
  24. github.com/beorn7/perks v1.0.1 // indirect
  25. github.com/cespare/xxhash/v2 v2.2.0 // indirect
  26. github.com/coreos/go-systemd/v22 v22.5.0 // indirect
  27. github.com/golang/protobuf v1.5.3 // indirect
  28. github.com/kr/text v0.2.0 // indirect
  29. github.com/mattn/go-colorable v0.1.12 // indirect
  30. github.com/mattn/go-isatty v0.0.14 // indirect
  31. github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
  32. github.com/prometheus/client_model v0.3.0 // indirect
  33. github.com/prometheus/common v0.42.0 // indirect
  34. github.com/prometheus/procfs v0.10.1 // indirect
  35. github.com/rogpeppe/go-internal v1.10.0 // indirect
  36. github.com/tidwall/match v1.1.1 // indirect
  37. github.com/tidwall/pretty v1.2.0 // indirect
  38. github.com/tidwall/sjson v1.2.5 // indirect
  39. github.com/yuin/goldmark v1.5.4 // indirect
  40. go.mau.fi/libsignal v0.1.0 // indirect
  41. go.mau.fi/zeroconfig v0.1.2 // indirect
  42. golang.org/x/crypto v0.11.0 // indirect
  43. golang.org/x/sys v0.10.0 // indirect
  44. golang.org/x/text v0.11.0 // indirect
  45. gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
  46. gopkg.in/yaml.v3 v3.0.1 // indirect
  47. maunium.net/go/mauflag v1.0.0 // indirect
  48. )