diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2025-07-05 22:14:38 -0400 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2025-07-06 11:49:26 -0400 |
| commit | c2db32af683bc150560be8bd5d9c4e93b3c02491 (patch) | |
| tree | a334ce728548ea9287a59dd627f73f4b388e2a44 /go/go.mod | |
| parent | 81ef6f68b139b2ccfa3ebc5c227f709d7b67640f (diff) | |
| download | muhqs-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.mod | 25 |
1 files changed, 14 insertions, 11 deletions
@@ -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 ) |
