-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
25 lines (22 loc) · 995 Bytes
/
go.mod
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
module github.com/eliasrenman/go-bullet-hell
go 1.19
require (
github.com/fogleman/gg v1.3.0
github.com/hajimehoshi/ebiten/v2 v2.4.5
)
require (
github.com/chewxy/math32 v1.10.1 // indirect
github.com/ebitengine/purego v0.0.0-20220905075623-aeed57cda744 // indirect
github.com/fogleman/ease v0.0.0-20170301025033-8da417bf1776 // indirect
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20220806181222-55e207c401ad // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/hajimehoshi/file2byteslice v0.0.0-20210813153925-5340248a8f41 // indirect
github.com/jezek/xgb v1.0.1 // indirect
github.com/viterin/partial v1.0.0 // indirect
github.com/viterin/vek v0.4.0 // indirect
golang.org/x/exp v0.0.0-20230108222341-4b8118a2686a // indirect
golang.org/x/image v0.0.0-20220722155232-062f8c9fd539 // indirect
golang.org/x/mobile v0.0.0-20220722155234-aaac322e2105 // indirect
golang.org/x/sys v0.2.0 // indirect
golang.org/x/text v0.5.0 // indirect
)