2023-08-10 06:15:55 +02:00
|
|
|
module miniflux.app/v2
|
2018-08-27 01:43:53 +02:00
|
|
|
|
2023-08-09 06:54:09 +02:00
|
|
|
// +heroku goVersion go1.21
|
2018-08-30 05:45:49 +02:00
|
|
|
|
2018-08-27 01:43:53 +02:00
|
|
|
require (
|
2023-02-20 23:56:37 +01:00
|
|
|
github.com/PuerkitoBio/goquery v1.8.1
|
2023-06-28 05:21:51 +02:00
|
|
|
github.com/coreos/go-oidc/v3 v3.6.0
|
2021-09-08 05:09:20 +02:00
|
|
|
github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible
|
2020-08-24 08:30:32 +02:00
|
|
|
github.com/gorilla/mux v1.8.0
|
2023-04-27 00:56:46 +02:00
|
|
|
github.com/lib/pq v1.10.9
|
2022-10-28 03:02:17 +02:00
|
|
|
github.com/matrix-org/gomatrix v0.0.0-20220926102614-ceba4d9f7530
|
2023-07-29 00:06:20 +02:00
|
|
|
github.com/mccutchen/go-httpbin/v2 v2.11.0
|
2023-06-16 00:57:05 +02:00
|
|
|
github.com/prometheus/client_golang v1.16.0
|
2022-11-13 23:46:14 +01:00
|
|
|
github.com/rylans/getlang v0.0.0-20201227074721-9e7f44ff8aa0
|
2023-08-01 00:16:35 +02:00
|
|
|
github.com/tdewolff/minify/v2 v2.12.8
|
2023-08-18 00:07:43 +02:00
|
|
|
github.com/yuin/goldmark v1.5.6
|
2023-08-05 00:53:35 +02:00
|
|
|
golang.org/x/crypto v0.12.0
|
2023-08-08 00:43:08 +02:00
|
|
|
golang.org/x/net v0.14.0
|
|
|
|
golang.org/x/oauth2 v0.11.0
|
2023-08-05 00:53:35 +02:00
|
|
|
golang.org/x/term v0.11.0
|
2023-04-18 00:56:47 +02:00
|
|
|
mvdan.cc/xurls/v2 v2.5.0
|
2018-08-27 01:43:53 +02:00
|
|
|
)
|
2019-09-06 06:39:32 +02:00
|
|
|
|
2022-11-13 23:46:14 +01:00
|
|
|
require (
|
|
|
|
github.com/andybalholm/cascadia v1.3.1 // indirect
|
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2023-04-14 00:57:09 +02:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
2023-06-28 05:21:51 +02:00
|
|
|
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
|
2023-04-14 00:57:09 +02:00
|
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
2022-11-13 23:46:14 +01:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
|
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
2023-04-14 00:57:09 +02:00
|
|
|
github.com/prometheus/common v0.42.0 // indirect
|
2023-06-16 00:57:05 +02:00
|
|
|
github.com/prometheus/procfs v0.10.1 // indirect
|
2023-08-01 00:16:35 +02:00
|
|
|
github.com/tdewolff/parse/v2 v2.6.7 // indirect
|
2022-11-13 23:46:14 +01:00
|
|
|
github.com/technoweenie/multipartstreamer v1.0.1 // indirect
|
2023-08-05 00:53:35 +02:00
|
|
|
golang.org/x/sys v0.11.0 // indirect
|
|
|
|
golang.org/x/text v0.12.0 // indirect
|
2022-11-13 23:46:14 +01:00
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
2023-07-06 00:53:36 +02:00
|
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
2022-11-13 23:46:14 +01:00
|
|
|
)
|
|
|
|
|
2023-08-09 06:54:09 +02:00
|
|
|
go 1.21
|