-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
53 lines (50 loc) · 2.34 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
module github.com/pencroff/proj2048
go 1.17
require (
github.com/OneOfOne/xxhash v1.2.8
github.com/fogleman/gg v1.3.0
github.com/go-pkgz/lgr v0.10.4
github.com/hajimehoshi/ebiten/v2 v2.2.3
github.com/jaypipes/ghw v0.8.0
github.com/linkedin/goavro/v2 v2.10.1
github.com/pkg/errors v0.9.1
github.com/sedyh/mizu v1.0.3
github.com/spaolacci/murmur3 v1.1.0
github.com/stretchr/testify v1.7.0
github.com/tdewolff/canvas v0.0.0-20211230013015-6230030f0d2d
golang.org/x/image v0.0.0-20211028202545-6944b10bf410
)
require (
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
github.com/blizzy78/ebitenui v0.0.0-20211114161546-ca1a302d930b // indirect
github.com/cespare/xxhash v1.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dsnet/compress v0.0.1 // indirect
github.com/ghodss/yaml v1.0.0 // indirect
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20211213063430-748e38ca8aec // indirect
github.com/go-ole/go-ole v1.2.4 // indirect
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
github.com/hajimehoshi/ebiten v1.11.6 // indirect
github.com/jaypipes/pcidb v0.6.0 // indirect
github.com/jezek/xgb v0.0.0-20210312150743-0e0f116e1240 // indirect
github.com/magicsea/gosprite v0.0.0-20201208094141-c065a00bb09d // indirect
github.com/mitchellh/go-homedir v1.0.0 // indirect
github.com/onsi/ginkgo/v2 v2.0.0 // indirect
github.com/onsi/gomega v1.17.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/exp v0.0.0-20211111183329-cb5df436b1a8 // indirect
golang.org/x/mobile v0.0.0-20211109191125-d61a72f26a1a // indirect
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.8-0.20211029000441-d6a9af8af023 // indirect
google.golang.org/protobuf v1.26.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
howett.net/plist v0.0.0-20181124034731-591f970eefbb // indirect
)