2022-05-20 13:37:41 +00:00
|
|
|
module go.mau.fi/mautrix-discord
|
2021-11-18 07:30:50 +00:00
|
|
|
|
2024-02-18 21:12:35 +00:00
|
|
|
go 1.21
|
2021-11-18 07:30:50 +00:00
|
|
|
|
2021-11-18 08:03:42 +00:00
|
|
|
require (
|
2023-02-13 22:00:27 +00:00
|
|
|
github.com/bwmarrin/discordgo v0.27.0
|
2023-10-16 10:22:40 +00:00
|
|
|
github.com/gabriel-vasile/mimetype v1.4.3
|
2023-01-29 11:45:00 +00:00
|
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
|
2022-04-26 03:29:35 +00:00
|
|
|
github.com/gorilla/mux v1.8.0
|
2022-02-11 10:04:07 +00:00
|
|
|
github.com/gorilla/websocket v1.5.0
|
2023-05-06 14:45:56 +00:00
|
|
|
github.com/lib/pq v1.10.9
|
2024-07-16 08:28:58 +00:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.22
|
2023-10-16 10:22:40 +00:00
|
|
|
github.com/rs/zerolog v1.31.0
|
2022-01-05 02:20:45 +00:00
|
|
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
|
2023-06-16 11:42:12 +00:00
|
|
|
github.com/stretchr/testify v1.8.4
|
2023-11-16 13:27:12 +00:00
|
|
|
github.com/yuin/goldmark v1.6.0
|
2024-07-12 17:09:07 +00:00
|
|
|
go.mau.fi/util v0.2.2-0.20231228160422-22fdd4bbddeb
|
2023-12-24 18:24:45 +00:00
|
|
|
golang.org/x/exp v0.0.0-20231219180239-dc181d75b848
|
2023-11-16 13:27:12 +00:00
|
|
|
golang.org/x/sync v0.5.0
|
2023-02-26 19:50:16 +00:00
|
|
|
maunium.net/go/maulogger/v2 v2.4.1
|
2024-07-12 17:09:07 +00:00
|
|
|
maunium.net/go/mautrix v0.16.3-0.20240712164054-e6046fbf432c
|
2021-11-18 08:03:42 +00:00
|
|
|
)
|
2021-11-18 07:30:50 +00:00
|
|
|
|
2021-11-18 08:44:21 +00:00
|
|
|
require (
|
2023-04-16 12:31:23 +00:00
|
|
|
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
|
2022-08-20 07:26:03 +00:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2023-10-16 10:22:40 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
2022-08-20 07:26:03 +00:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2023-11-16 13:27:12 +00:00
|
|
|
github.com/tidwall/gjson v1.17.0 // indirect
|
2022-04-20 11:01:26 +00:00
|
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
|
|
github.com/tidwall/pretty v1.2.0 // indirect
|
2022-09-13 11:44:31 +00:00
|
|
|
github.com/tidwall/sjson v1.2.5 // indirect
|
2023-03-15 14:21:53 +00:00
|
|
|
go.mau.fi/zeroconfig v0.1.2 // indirect
|
2023-11-16 13:27:12 +00:00
|
|
|
golang.org/x/crypto v0.15.0 // indirect
|
|
|
|
golang.org/x/net v0.18.0 // indirect
|
|
|
|
golang.org/x/sys v0.14.0 // indirect
|
2023-02-26 19:50:16 +00:00
|
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
|
2022-06-30 19:00:12 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2022-05-22 19:16:42 +00:00
|
|
|
maunium.net/go/mauflag v1.0.0 // indirect
|
2021-11-18 08:44:21 +00:00
|
|
|
)
|
2022-01-26 05:22:20 +00:00
|
|
|
|
2023-10-13 18:31:38 +00:00
|
|
|
replace github.com/bwmarrin/discordgo => github.com/beeper/discordgo v0.0.0-20231013182643-f333f2578a3c
|