mirror of
https://codeberg.org/june64/mrvc.git
synced 2026-01-09 15:52:53 +01:00
Add first version of mrvc (max room version checker) - a tool for determining how many members support which maximum room version for a given Matrix room.
31 lines
1.1 KiB
Modula-2
31 lines
1.1 KiB
Modula-2
module codeberg.org/june64/mrvc
|
|
|
|
go 1.24.5
|
|
|
|
require (
|
|
github.com/hashicorp/go-version v1.7.0
|
|
github.com/matrix-org/gomatrixserverlib v0.0.0-20250813150445-9f5070a65744
|
|
maunium.net/go/mautrix v0.24.2
|
|
)
|
|
|
|
require (
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
|
github.com/hashicorp/go-set/v3 v3.0.0 // indirect
|
|
github.com/matrix-org/gomatrix v0.0.0-20220926102614-ceba4d9f7530 // indirect
|
|
github.com/matrix-org/util v0.0.0-20221111132719-399730281e66 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/oleiade/lane/v2 v2.0.0 // indirect
|
|
github.com/rs/zerolog v1.34.0 // indirect
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
|
github.com/tidwall/gjson v1.18.0 // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.1 // indirect
|
|
github.com/tidwall/sjson v1.2.5 // indirect
|
|
go.mau.fi/util v0.8.8 // indirect
|
|
golang.org/x/crypto v0.40.0 // indirect
|
|
golang.org/x/exp v0.0.0-20250711185948-6ae5c78190dc // indirect
|
|
golang.org/x/net v0.42.0 // indirect
|
|
golang.org/x/sys v0.34.0 // indirect
|
|
golang.org/x/text v0.27.0 // indirect
|
|
)
|