go.mod 613 B

12345678910111213141516171819202122
  1. module gitlab.com/beeper/discord
  2. go 1.17
  3. require (
  4. github.com/alecthomas/kong v0.2.18
  5. github.com/lib/pq v1.9.0
  6. github.com/lopezator/migrator v0.3.0
  7. github.com/mattn/go-sqlite3 v1.14.6
  8. gopkg.in/yaml.v2 v2.4.0
  9. maunium.net/go/maulogger/v2 v2.3.1
  10. maunium.net/go/mautrix v0.9.27
  11. )
  12. require (
  13. github.com/btcsuite/btcutil v1.0.2 // indirect
  14. github.com/gorilla/mux v1.8.0 // indirect
  15. github.com/gorilla/websocket v1.4.2 // indirect
  16. github.com/pkg/errors v0.9.1 // indirect
  17. golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83 // indirect
  18. golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d // indirect
  19. )