aboutsummaryrefslogtreecommitdiff
path: root/go/go.mod
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2025-07-05 22:14:38 -0400
committerFlorian Fischer <florian.fischer@muhq.space>2025-07-06 11:49:26 -0400
commitc2db32af683bc150560be8bd5d9c4e93b3c02491 (patch)
treea334ce728548ea9287a59dd627f73f4b388e2a44 /go/go.mod
parent81ef6f68b139b2ccfa3ebc5c227f709d7b67640f (diff)
downloadmuhqs-game-c2db32af683bc150560be8bd5d9c4e93b3c02491.tar.gz
muhqs-game-c2db32af683bc150560be8bd5d9c4e93b3c02491.zip
update dependencies
Replace gorilla with coder websocket implementation for wasm support. Add xdg package for use in our applications.
Diffstat (limited to 'go/go.mod')
-rw-r--r--go/go.mod25
1 files changed, 14 insertions, 11 deletions
diff --git a/go/go.mod b/go/go.mod
index 3cfd4455..1577278d 100644
--- a/go/go.mod
+++ b/go/go.mod
@@ -4,21 +4,24 @@ go 1.24
require (
github.com/RyanCarrier/dijkstra v1.4.0
- github.com/gorilla/websocket v1.5.3
- github.com/hajimehoshi/ebiten/v2 v2.8.6
- golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67
- golang.org/x/image v0.23.0
- golang.org/x/net v0.33.0
+ github.com/adrg/xdg v0.5.3
+ github.com/coder/websocket v1.8.13
+ github.com/hajimehoshi/ebiten/v2 v2.8.8
+ golang.org/x/exp v0.0.0-20250620022241-b7579e27df2b
+ golang.org/x/image v0.28.0
+ golang.org/x/net v0.41.0
gopkg.in/yaml.v3 v3.0.1
)
require (
- github.com/ebitengine/gomobile v0.0.0-20241016134836-cc2e38a7c0ee // indirect
+ github.com/ebitengine/gomobile v0.0.0-20250329061421-6d0a8e981e4c // indirect
github.com/ebitengine/hideconsole v1.0.0 // indirect
- github.com/ebitengine/purego v0.8.1 // indirect
- github.com/go-text/typesetting v0.2.1 // indirect
+ github.com/ebitengine/purego v0.8.4 // indirect
+ github.com/go-text/typesetting v0.3.0 // indirect
github.com/jezek/xgb v1.1.1 // indirect
- golang.org/x/sync v0.10.0 // indirect
- golang.org/x/sys v0.28.0 // indirect
- golang.org/x/text v0.21.0 // indirect
+ github.com/kr/pretty v0.1.0 // indirect
+ golang.org/x/sync v0.15.0 // indirect
+ golang.org/x/sys v0.33.0 // indirect
+ golang.org/x/text v0.26.0 // indirect
+ gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
)