mirror of
https://github.com/woodchen-ink/webp_server_go.git
synced 2025-07-18 05:32:02 +08:00
* WIP JXL * Fix test * Tries to fix autobuild * Tries to fix autobuild * Add setup go in codeql * Bump actions version * Do not print curl output in CI * Do not print curl output in CI * Remove Metadata on RAW image * Update sample config * better loop * Prefetch should also respect AllowedType * Better Export params and UA handle * Only do conversion on supported formats * CONVERT_TYPES default to webp only * CONVERT_TYPES default to webp only * Add GIF to AllowedTypes * Update README
41 lines
1.5 KiB
Modula-2
41 lines
1.5 KiB
Modula-2
module webp_server_go
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
github.com/cespare/xxhash v1.1.0
|
|
github.com/davidbyttow/govips/v2 v2.14.0
|
|
github.com/gofiber/fiber/v2 v2.52.2
|
|
github.com/h2non/filetype v1.1.4-0.20230123234534-cfcd7d097bc4
|
|
github.com/h2non/go-is-svg v0.0.0-20160927212452-35e8c4b0612c
|
|
github.com/jeremytorres/rawparser v1.0.2
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
|
github.com/schollz/progressbar/v3 v3.14.2
|
|
github.com/sirupsen/logrus v1.9.3
|
|
github.com/stretchr/testify v1.9.0
|
|
github.com/valyala/fasthttp v1.52.0
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.1.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/google/uuid v1.5.0 // indirect
|
|
github.com/klauspost/compress v1.17.6 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
|
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
golang.org/x/image v0.15.0 // indirect
|
|
golang.org/x/net v0.21.0 // indirect
|
|
golang.org/x/sys v0.17.0 // indirect
|
|
golang.org/x/term v0.17.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace github.com/jeremytorres/rawparser v1.0.2 => github.com/webp-sh/rawparser v0.0.0-20240311121240-15117cd3320a
|