2018-08-27 01:43:53 +02:00
|
|
|
module miniflux.app
|
|
|
|
|
2021-02-17 06:02:13 +01:00
|
|
|
// +heroku goVersion go1.16
|
2018-08-30 05:45:49 +02:00
|
|
|
|
2018-08-27 01:43:53 +02:00
|
|
|
require (
|
2021-11-01 23:05:30 +01:00
|
|
|
github.com/PuerkitoBio/goquery v1.8.0
|
2020-03-08 03:45:19 +01:00
|
|
|
github.com/coreos/go-oidc v2.2.1+incompatible
|
2021-09-08 05:09:20 +02:00
|
|
|
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible
|
2020-08-24 08:30:32 +02:00
|
|
|
github.com/gorilla/mux v1.8.0
|
2022-09-13 00:15:29 +02:00
|
|
|
github.com/lib/pq v1.10.7
|
2022-10-28 03:02:17 +02:00
|
|
|
github.com/matrix-org/gomatrix v0.0.0-20220926102614-ceba4d9f7530
|
2020-03-08 03:45:19 +01:00
|
|
|
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
|
2022-11-07 23:01:30 +01:00
|
|
|
github.com/prometheus/client_golang v1.13.1
|
2020-09-06 22:15:11 +02:00
|
|
|
github.com/rylans/getlang v0.0.0-20200505200108-4c3188ff8a2d
|
2022-10-04 00:36:57 +02:00
|
|
|
github.com/tdewolff/minify/v2 v2.12.4
|
2021-09-08 05:04:22 +02:00
|
|
|
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
|
2022-09-27 00:00:54 +02:00
|
|
|
github.com/yuin/goldmark v1.5.2
|
2022-10-28 03:02:17 +02:00
|
|
|
golang.org/x/crypto v0.1.0
|
|
|
|
golang.org/x/net v0.1.0
|
|
|
|
golang.org/x/oauth2 v0.1.0
|
2022-11-08 04:50:32 +01:00
|
|
|
golang.org/x/term v0.2.0
|
2022-08-29 05:42:50 +02:00
|
|
|
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
|
2022-03-07 23:01:26 +01:00
|
|
|
mvdan.cc/xurls/v2 v2.4.0
|
2018-08-27 01:43:53 +02:00
|
|
|
)
|
2019-09-06 06:39:32 +02:00
|
|
|
|
2021-02-17 06:02:13 +01:00
|
|
|
go 1.16
|