breakout/go.mod
Ruidy 1c901e7e07
chore(deps): update Go and Ebiten dependencies
Upgrade Go version to 1.25.3 and bump Ebiten to v2.9.3. Update related
dependencies to their latest versions, including purego, xgb, image,
sync,
and sys. Add new indirect dependencies: gomobile and hideconsole.
2025-11-02 22:39:00 +01:00

15 lines
429 B
Modula-2

module breakout
go 1.25.3
require github.com/hajimehoshi/ebiten/v2 v2.9.3
require (
github.com/ebitengine/gomobile v0.0.0-20250923094054-ea854a63cce1 // indirect
github.com/ebitengine/hideconsole v1.0.0 // indirect
github.com/ebitengine/purego v0.9.0 // indirect
github.com/jezek/xgb v1.1.1 // indirect
golang.org/x/image v0.32.0 // indirect
golang.org/x/sync v0.17.0 // indirect
golang.org/x/sys v0.37.0 // indirect
)