-
Notifications
You must be signed in to change notification settings - Fork 68
/
go.mod
33 lines (31 loc) · 1.29 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
module github.com/libretro/ludo
require (
github.com/adrg/xdg v0.4.0
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/cavaliercoder/grab v2.0.0+incompatible
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/disintegration/imaging v1.6.2
github.com/fatih/structs v1.1.0
github.com/go-gl/gl v0.0.0-20231021071112-07e5d0ea2e71
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20240506104042-037f3cc74f2a
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
github.com/golang/snappy v0.0.4 // indirect
github.com/klauspost/compress v1.17.8 // indirect
github.com/klauspost/pgzip v1.2.6 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0
github.com/mholt/archiver/v3 v3.5.1
github.com/nwaples/rardecode v1.1.3 // indirect
github.com/pelletier/go-toml v1.9.5
github.com/pierrec/lz4/v4 v4.1.21 // indirect
github.com/tanema/gween v0.0.0-20221212145351-621cc8a459d1
github.com/ulikunitz/xz v0.5.12 // indirect
github.com/youpy/go-wav v0.3.2
github.com/zaf/g711 v1.4.0 // indirect
golang.org/x/image v0.16.0
golang.org/x/mobile v0.0.0-20240520174638-fa72addaaa1b
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.0 // indirect
)
go 1.13