diff options
author | xengineering <me@xengineering.eu> | 2023-04-16 11:44:28 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-16 11:44:28 +0200 |
commit | 59c7f02ad05af0223a08f47e3193c331a86445d5 (patch) | |
tree | 0079097fd9eea7c09067c2acf7cc978322db3fc2 /go.mod | |
parent | 70456216ebbcc7e5006b6a005c571457e60be6e7 (diff) | |
download | limox-59c7f02ad05af0223a08f47e3193c331a86445d5.tar limox-59c7f02ad05af0223a08f47e3193c331a86445d5.tar.zst limox-59c7f02ad05af0223a08f47e3193c331a86445d5.zip |
Switch completely to Go and Gio UI
The properties of the Go language, standard library and the Gio UI
library are well suited for this project. The existing experimental Go
code exceeds the GTK4 and SDL attempts by far with respect to quality
and code simplicity.
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -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 +) |