31 lines
1.1 KiB
Modula-2
31 lines
1.1 KiB
Modula-2
module github.com/mineatar-io/api-server
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/go-redis/redis/v8 v8.11.5
|
|
github.com/gofiber/fiber/v2 v2.40.1
|
|
github.com/joho/godotenv v1.4.0
|
|
github.com/mineatar-io/skin-render v1.0.1
|
|
github.com/mineatar-io/yggdrasil v1.0.1
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.0.4 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
|
github.com/klauspost/compress v1.15.9 // indirect
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.16 // indirect
|
|
github.com/mattn/go-runewidth v0.0.14 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.41.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
golang.org/x/image v0.0.0-20220722155232-062f8c9fd539 // indirect
|
|
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
|
)
|