-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (21 loc) · 796 Bytes
/
go.mod
File metadata and controls
26 lines (21 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
module github.com/samiam2013/learnGo
go 1.25.0
require github.com/fogleman/gg v1.3.0
require github.com/hajimehoshi/ebiten/v2 v2.2.5
require (
golang.org/x/term v0.11.0
google.golang.org/protobuf v1.33.0
)
require (
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20210727001814-0db043d8d5be // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/jezek/xgb v0.0.0-20210312150743-0e0f116e1240 // indirect
github.com/lib/pq v1.10.7
github.com/mattn/go-isatty v0.0.19
github.com/sirupsen/logrus v1.9.3
golang.org/x/exp v0.0.0-20190731235908-ec7cb31e5a56 // indirect
golang.org/x/image v0.38.0 // indirect
golang.org/x/mobile v0.0.0-20210902104108-5d9a33257ab5 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.11.0 // indirect
)