mirror of
https://github.com/miniflux/v2.git
synced 2025-06-27 16:36:00 +00:00
Some websites are using images of O(10kB) when not )O(100kB) for their favicons. As miniflux only displays them with a 16x16 resolution, let's do our best to resize them before storing them in the database. This should make miniflux consume less bandwidth when serving pages, for the joy of mobile users on a small data plan. Of course, images that already are 16x16 aren't resized.
48 lines
1.5 KiB
Modula-2
48 lines
1.5 KiB
Modula-2
module miniflux.app/v2
|
|
|
|
// +heroku goVersion go1.23
|
|
|
|
require (
|
|
github.com/PuerkitoBio/goquery v1.10.0
|
|
github.com/abadojack/whatlanggo v1.0.1
|
|
github.com/andybalholm/brotli v1.1.1
|
|
github.com/coreos/go-oidc/v3 v3.11.0
|
|
github.com/go-webauthn/webauthn v0.11.2
|
|
github.com/gorilla/mux v1.8.1
|
|
github.com/lib/pq v1.10.9
|
|
github.com/prometheus/client_golang v1.20.5
|
|
github.com/tdewolff/minify/v2 v2.21.2
|
|
golang.org/x/crypto v0.31.0
|
|
golang.org/x/image v0.23.0
|
|
golang.org/x/net v0.32.0
|
|
golang.org/x/oauth2 v0.24.0
|
|
golang.org/x/term v0.27.0
|
|
golang.org/x/text v0.21.0
|
|
)
|
|
|
|
require (
|
|
github.com/go-webauthn/x v0.1.14 // indirect
|
|
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
|
|
github.com/google/go-tpm v0.9.1 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/cascadia v1.3.2 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
|
|
github.com/go-jose/go-jose/v4 v4.0.2 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
github.com/prometheus/common v0.55.0 // indirect
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
|
github.com/tdewolff/parse/v2 v2.7.19 // indirect
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
golang.org/x/sys v0.28.0 // indirect
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
|
)
|
|
|
|
go 1.23
|