summaryrefslogtreecommitdiff
path: root/go/go.mod
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-20 20:51:56 +0100
committerxengineering <me@xengineering.eu>2023-02-20 20:51:56 +0100
commit2ab06fbc7f5b2ed93ee8668ac6f3ab7c1e15130c (patch)
tree0146575be8a4bcefc99e43fb887cffae38d81692 /go/go.mod
parentbecf716c4de03d58113017cd135b3c90fd77bcac (diff)
downloadlimox-2ab06fbc7f5b2ed93ee8668ac6f3ab7c1e15130c.tar
limox-2ab06fbc7f5b2ed93ee8668ac6f3ab7c1e15130c.tar.zst
limox-2ab06fbc7f5b2ed93ee8668ac6f3ab7c1e15130c.zip
Add Golang-based Gio example code
Golang and Gio should be considered as an alternative to the current C- and SDL-based setup.
Diffstat (limited to 'go/go.mod')
-rw-r--r--go/go.mod17
1 files changed, 17 insertions, 0 deletions
diff --git a/go/go.mod b/go/go.mod
new file mode 100644
index 0000000..de2e3d7
--- /dev/null
+++ b/go/go.mod
@@ -0,0 +1,17 @@
+module xengineering.eu/limox
+
+go 1.20
+
+require gioui.org v0.0.0-20230206180804-32c6a9b10d0b
+
+require (
+ gioui.org/cpu v0.0.0-20210817075930-8d6a761490d2 // indirect
+ gioui.org/shader v1.0.6 // indirect
+ github.com/benoitkugler/textlayout v0.3.0 // indirect
+ github.com/go-text/typesetting v0.0.0-20221214153724-0399769901d5 // indirect
+ golang.org/x/exp v0.0.0-20221012211006-4de253d81b95 // indirect
+ golang.org/x/exp/shiny v0.0.0-20220827204233-334a2380cb91 // indirect
+ golang.org/x/image v0.0.0-20220722155232-062f8c9fd539 // indirect
+ golang.org/x/sys v0.0.0-20220825204002-c680a09ffe64 // indirect
+ golang.org/x/text v0.3.7 // indirect
+)