mirror of
https://github.com/woodchen-ink/webp_server_go.git
synced 2025-07-18 13:42:02 +08:00
* fix runtime.GOOS=="windows, add some test cases test cases are still limited for flag * update to latest fiber v2.4.0 & libwebp v1.2.0 manually test confirmed
17 lines
393 B
Modula-2
17 lines
393 B
Modula-2
module webp_server_go
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
github.com/chai2010/webp v1.1.0
|
|
github.com/gofiber/fiber/v2 v2.4.0
|
|
github.com/sirupsen/logrus v1.6.0
|
|
github.com/stretchr/testify v1.3.0
|
|
golang.org/x/image v0.0.0-20200119044424-58c23975cae1
|
|
)
|
|
|
|
replace (
|
|
github.com/chai2010/webp v1.1.0 => github.com/webp-sh/webp v1.2.0
|
|
github.com/gofiber/fiber/v2 v2.4.0 => github.com/webp-sh/fiber/v2 v2.4.0
|
|
)
|