2018-08-27 01:43:53 +02:00
|
|
|
module miniflux.app
|
|
|
|
|
2018-08-30 05:45:49 +02:00
|
|
|
// +heroku goVersion go1.11
|
|
|
|
|
2018-08-27 01:43:53 +02:00
|
|
|
require (
|
2020-10-12 07:21:27 +02:00
|
|
|
github.com/PuerkitoBio/goquery v1.6.0
|
2020-03-08 03:45:19 +01:00
|
|
|
github.com/coreos/go-oidc v2.2.1+incompatible
|
2020-08-24 08:30:32 +02:00
|
|
|
github.com/gorilla/mux v1.8.0
|
2020-08-03 08:51:56 +02:00
|
|
|
github.com/lib/pq v1.8.0
|
2020-03-08 03:45:19 +01:00
|
|
|
github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
|
2020-09-28 01:01:06 +02:00
|
|
|
github.com/prometheus/client_golang v1.7.1
|
|
|
|
github.com/prometheus/common v0.14.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.2.0 // indirect
|
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
|
2020-10-15 07:19:05 +02:00
|
|
|
github.com/tdewolff/minify/v2 v2.9.7 // indirect
|
2020-09-28 01:01:06 +02:00
|
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
|
|
|
|
golang.org/x/net v0.0.0-20200625001655-4c5254603344
|
2020-04-26 05:55:33 +02:00
|
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
2020-09-28 01:01:06 +02:00
|
|
|
golang.org/x/sys v0.0.0-20200926100807-9d91bd62050c // indirect
|
2020-04-26 05:55:33 +02:00
|
|
|
google.golang.org/appengine v1.6.6 // indirect
|
2020-09-28 01:01:06 +02:00
|
|
|
google.golang.org/protobuf v1.25.0 // indirect
|
2020-04-26 05:55:33 +02:00
|
|
|
gopkg.in/square/go-jose.v2 v2.5.0 // indirect
|
2018-08-27 01:43:53 +02:00
|
|
|
)
|
2019-09-06 06:39:32 +02:00
|
|
|
|
|
|
|
go 1.11
|