mirror of
https://github.com/woodchen-ink/webp_server_go.git
synced 2025-07-18 13:42:02 +08:00
* runnable * convert is working * some refactoring * update go.mod * fix some TODOs * add TODO * update go mod * rebase onto master * fix #234 2: 5.9s - 7.6MB 4: 26s - 6.9MB * fix malloc tests * fix malloc tests * remote TODO * add X-Real-IP #236 * Better localRawImagePath * remove some wrong comments * Bump version to 0.9.0 --------- Co-authored-by: n0vad3v <n0vad3v@riseup.net>
38 lines
1.3 KiB
Modula-2
38 lines
1.3 KiB
Modula-2
module webp_server_go
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/cespare/xxhash v1.1.0
|
|
github.com/davidbyttow/govips/v2 v2.13.0
|
|
github.com/gofiber/fiber/v2 v2.46.0
|
|
github.com/h2non/filetype v1.1.3
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
|
github.com/schollz/progressbar/v3 v3.13.1
|
|
github.com/sirupsen/logrus v1.9.3
|
|
github.com/valyala/fasthttp v1.47.0
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.0.5 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/klauspost/compress v1.16.3 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.18 // indirect
|
|
github.com/mattn/go-runewidth v0.0.14 // indirect
|
|
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
|
|
github.com/philhofer/fwd v1.1.2 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/savsgio/dictpool v0.0.0-20221023140959-7bf2e61cea94 // indirect
|
|
github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee // indirect
|
|
github.com/stretchr/testify v1.8.4 // indirect
|
|
github.com/tinylib/msgp v1.1.8 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
golang.org/x/image v0.5.0 // indirect
|
|
golang.org/x/net v0.8.0 // indirect
|
|
golang.org/x/sys v0.8.0 // indirect
|
|
golang.org/x/term v0.6.0 // indirect
|
|
golang.org/x/text v0.8.0 // indirect
|
|
)
|