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
|
2020-12-19 00:08:17 +01:00
|
|
|
github.com/felixge/httpsnoop v1.0.1 // indirect
|
2021-09-08 05:09:20 +02:00
|
|
|
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible
|
2020-12-19 00:08:17 +01:00
|
|
|
github.com/golang/gddo v0.0.0-20200831202555-721e228c7686 // indirect
|
2020-08-24 08:30:32 +02:00
|
|
|
github.com/gorilla/mux v1.8.0
|
2022-05-17 00:03:29 +02:00
|
|
|
github.com/lib/pq v1.10.6
|
2020-12-19 00:08:17 +01:00
|
|
|
github.com/mitchellh/go-server-timing v1.0.2-0.20201108055052-feb680ab92c2
|
2020-03-08 03:45:19 +01:00
|
|
|
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
|
2022-05-17 00:03:33 +02:00
|
|
|
github.com/prometheus/client_golang v1.12.2
|
2020-09-06 22:15:11 +02:00
|
|
|
github.com/rylans/getlang v0.0.0-20200505200108-4c3188ff8a2d
|
|
|
|
github.com/stretchr/testify v1.6.1 // indirect
|
2022-06-28 00:01:23 +02:00
|
|
|
github.com/tdewolff/minify/v2 v2.11.11
|
2021-09-08 05:04:22 +02:00
|
|
|
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
|
2020-09-28 01:01:06 +02:00
|
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
|
2021-11-01 23:05:30 +01:00
|
|
|
golang.org/x/net v0.0.0-20210916014120-12bc252f5db8
|
2022-01-24 23:01:05 +01:00
|
|
|
golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c
|
2020-04-26 05:55:33 +02:00
|
|
|
gopkg.in/square/go-jose.v2 v2.5.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
|