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-01-18 06:17:58 +01:00
|
|
|
github.com/PuerkitoBio/goquery v1.6.1
|
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
|
|
|
|
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
|
2021-05-17 07:15:07 +02:00
|
|
|
github.com/lib/pq v1.10.2
|
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
|
2021-06-14 07:14:05 +02:00
|
|
|
github.com/prometheus/client_golang v1.11.0
|
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
|
2021-05-31 07:12:57 +02:00
|
|
|
github.com/tdewolff/minify/v2 v2.9.17
|
2020-09-28 01:01:06 +02:00
|
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
|
2020-10-31 06:46:43 +01:00
|
|
|
golang.org/x/net v0.0.0-20201029221708-28c70e62bb1d
|
2020-04-26 05:55:33 +02:00
|
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
|
|
|
google.golang.org/appengine v1.6.6 // indirect
|
|
|
|
gopkg.in/square/go-jose.v2 v2.5.0 // indirect
|
2021-01-01 14:15:33 +01:00
|
|
|
mvdan.cc/xurls/v2 v2.2.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
|