mirror of
https://github.com/PretendoNetwork/splatoon.git
synced 2026-03-21 17:45:08 -05:00
Some checks failed
Build and Publish Docker Image / build-publish (push) Has been cancelled
* feat(secure): Mark Splatfest sessions as OpenParticipation Bit of a hack but good enough to make things work for now * feat(secure): Add stubbed Splatoon Ranking protocol Fixes freezes related to Splatfest results upload * feat: matchmaking rewrite implementation * feat(secure): attempt to fix index bugs * fix: merge issue * fix(secure): forgot to change the import name * fix(secure): remove old index ignore * fix(secure): misspelling * fix(secure): remove unused var * fix(secure): revert previous fix * fix(secure): using another function * fix(secure): using another function * working on it * fix(secure): i hate these variable names * fix(secure): misspelled again * debug(secure): adding debugging * fix(secure): hopefully fix the error (thanks dani) * std(secure): standardize variable names * fix(secure): fix string issue * fix(secure): oops * fix(secure): remove attribute 1 * fix(secure): final fixups * fix(secure): final fixups * feat(secure): try fixing fest rooms * feat(secure): implement postgresql fix * merge * fix(secure): try once again to fix fests * fix(secure): ignore first param * fix: bump library versions and remove override * chore: go fmt all files * chore: Remove unused code * chore: Explicitly ignore error in criteria cleanup It's fine we just won't mm into this room --------- Co-authored-by: Ash Logan <ash@heyquark.com>
37 lines
1.4 KiB
Modula-2
37 lines
1.4 KiB
Modula-2
module github.com/PretendoNetwork/splatoon
|
|
|
|
go 1.22.1
|
|
|
|
require (
|
|
github.com/PretendoNetwork/grpc-go v1.0.2
|
|
github.com/PretendoNetwork/nex-go/v2 v2.0.5
|
|
github.com/PretendoNetwork/nex-protocols-common-go/v2 v2.0.6
|
|
github.com/PretendoNetwork/nex-protocols-go/v2 v2.0.4
|
|
github.com/PretendoNetwork/plogger-go v1.0.4
|
|
github.com/joho/godotenv v1.5.1
|
|
google.golang.org/grpc v1.63.2
|
|
)
|
|
|
|
require (
|
|
github.com/PretendoNetwork/pq-extended v1.0.0 // indirect
|
|
github.com/dolthub/maphash v0.1.0 // indirect
|
|
github.com/fatih/color v1.17.0 // indirect
|
|
github.com/golang/protobuf v1.5.4 // indirect
|
|
github.com/jwalton/go-supportscolor v1.2.0 // indirect
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
|
github.com/lib/pq v1.10.9 // indirect
|
|
github.com/lxzan/gws v1.8.5 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/rasky/go-lzo v0.0.0-20200203143853-96a758eda86e // indirect
|
|
github.com/superwhiskers/crunch/v3 v3.5.7 // indirect
|
|
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
|
|
golang.org/x/mod v0.18.0 // indirect
|
|
golang.org/x/net v0.26.0 // indirect
|
|
golang.org/x/sys v0.21.0 // indirect
|
|
golang.org/x/term v0.21.0 // indirect
|
|
golang.org/x/text v0.16.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20240617180043-68d350f18fd4 // indirect
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
|
)
|