2024-05-22 15:24:04 +02:00
|
|
|
module github.com/tlinden/gameoflife
|
2024-05-20 20:19:11 +02:00
|
|
|
|
|
|
|
|
go 1.22
|
|
|
|
|
|
2024-05-21 19:01:08 +02:00
|
|
|
require (
|
|
|
|
|
github.com/hajimehoshi/ebiten/v2 v2.7.4
|
|
|
|
|
github.com/spf13/pflag v1.0.5
|
2024-05-22 19:01:58 +02:00
|
|
|
golang.org/x/image v0.16.0
|
2024-05-21 19:01:08 +02:00
|
|
|
)
|
2024-05-20 20:19:11 +02:00
|
|
|
|
|
|
|
|
require (
|
2024-05-21 19:01:08 +02:00
|
|
|
github.com/ebitengine/gomobile v0.0.0-20240518074828-e86332849895 // indirect
|
2024-05-20 20:19:11 +02:00
|
|
|
github.com/ebitengine/hideconsole v1.0.0 // indirect
|
|
|
|
|
github.com/ebitengine/purego v0.7.0 // indirect
|
|
|
|
|
github.com/jezek/xgb v1.1.1 // indirect
|
2024-05-21 19:01:08 +02:00
|
|
|
golang.org/x/sync v0.7.0 // indirect
|
|
|
|
|
golang.org/x/sys v0.20.0 // indirect
|
2024-05-20 20:19:11 +02:00
|
|
|
)
|