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
|
2022-08-29 05:42:50 +02:00
|
|
|
github.com/felixge/httpsnoop v1.0.3 // indirect
|
2021-09-08 05:09:20 +02:00
|
|
|
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible
|
2022-08-29 05:42:50 +02:00
|
|
|
github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f // 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-08-09 07:07:34 +02:00
|
|
|
github.com/prometheus/client_golang v1.13.0
|
2020-09-06 22:15:11 +02:00
|
|
|
github.com/rylans/getlang v0.0.0-20200505200108-4c3188ff8a2d
|
2022-07-12 00:25:53 +02:00
|
|
|
github.com/tdewolff/minify/v2 v2.12.0
|
2021-09-08 05:04:22 +02:00
|
|
|
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
|
2022-08-02 00:06:52 +02:00
|
|
|
github.com/yuin/goldmark v1.4.13
|
2022-08-29 05:42:50 +02:00
|
|
|
golang.org/x/crypto v0.0.0-20220826181053-bd7e27e6170d
|
|
|
|
golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b
|
2022-08-09 07:07:34 +02:00
|
|
|
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b
|
2022-08-29 05:42:50 +02:00
|
|
|
golang.org/x/sys v0.0.0-20220825204002-c680a09ffe64 // indirect
|
|
|
|
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035
|
|
|
|
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
|