2018-08-26 16:43:53 -07:00
|
|
|
module miniflux.app
|
|
|
|
|
2021-02-16 21:02:13 -08:00
|
|
|
// +heroku goVersion go1.16
|
2018-08-29 20:45:49 -07:00
|
|
|
|
2018-08-26 16:43:53 -07:00
|
|
|
require (
|
2021-01-18 05:17:58 +00: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-18 23:08:17 +00:00
|
|
|
github.com/felixge/httpsnoop v1.0.1 // indirect
|
|
|
|
github.com/golang/gddo v0.0.0-20200831202555-721e228c7686 // indirect
|
2020-08-24 06:30:32 +00:00
|
|
|
github.com/gorilla/mux v1.8.0
|
2021-05-17 05:15:07 +00:00
|
|
|
github.com/lib/pq v1.10.2
|
2020-12-18 23:08:17 +00: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-03-22 05:10:59 +00:00
|
|
|
github.com/prometheus/client_golang v1.10.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 05:12:57 +00:00
|
|
|
github.com/tdewolff/minify/v2 v2.9.17
|
2020-09-27 16:01:06 -07:00
|
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
|
2020-10-30 22:46:43 -07:00
|
|
|
golang.org/x/net v0.0.0-20201029221708-28c70e62bb1d
|
2020-04-25 20:55:33 -07:00
|
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
|
|
|
google.golang.org/appengine v1.6.6 // indirect
|
2020-09-27 16:01:06 -07:00
|
|
|
google.golang.org/protobuf v1.25.0 // indirect
|
2020-04-25 20:55:33 -07:00
|
|
|
gopkg.in/square/go-jose.v2 v2.5.0 // indirect
|
2021-01-01 13:15:33 +00:00
|
|
|
mvdan.cc/xurls/v2 v2.2.0
|
2018-08-26 16:43:53 -07:00
|
|
|
)
|
2019-09-05 21:39:32 -07:00
|
|
|
|
2021-02-16 21:02:13 -08:00
|
|
|
go 1.16
|