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