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-10-07 05:57:53 +02:00
|
|
|
github.com/abadojack/whatlanggo v1.0.1
|
2023-10-21 00:14:19 +02:00
|
|
|
github.com/coreos/go-oidc/v3 v3.7.0
|
2023-11-05 18:57:35 +01:00
|
|
|
github.com/go-webauthn/webauthn v0.8.6
|
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
|
2023-09-28 00:20:32 +02:00
|
|
|
github.com/prometheus/client_golang v1.17.0
|
2023-11-02 23:44:51 +01:00
|
|
|
github.com/tdewolff/minify/v2 v2.20.6
|
2023-10-30 23:33:08 +01:00
|
|
|
github.com/yuin/goldmark v1.6.0
|
2023-10-06 04:07:11 +02:00
|
|
|
golang.org/x/crypto v0.14.0
|
2023-10-11 00:02:08 +02:00
|
|
|
golang.org/x/net v0.17.0
|
2023-10-07 00:53:04 +02:00
|
|
|
golang.org/x/oauth2 v0.13.0
|
2023-10-06 00:25:12 +02:00
|
|
|
golang.org/x/term v0.13.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 (
|
2023-11-05 18:57:35 +01:00
|
|
|
github.com/go-webauthn/x v0.1.4 // indirect
|
|
|
|
github.com/golang-jwt/jwt/v5 v5.0.0 // indirect
|
|
|
|
github.com/google/go-tpm v0.9.0 // indirect
|
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/andybalholm/cascadia v1.3.2 // indirect
|
2022-11-13 23:46:14 +01:00
|
|
|
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-11-05 18:57:35 +01:00
|
|
|
github.com/fxamacker/cbor/v2 v2.5.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
|
2023-11-05 18:57:35 +01:00
|
|
|
github.com/google/uuid v1.3.0 // indirect
|
2022-11-13 23:46:14 +01:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
2023-11-05 18:57:35 +01:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
2023-09-28 00:20:32 +02:00
|
|
|
github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect
|
|
|
|
github.com/prometheus/common v0.44.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.11.1 // indirect
|
2023-11-02 23:44:51 +01:00
|
|
|
github.com/tdewolff/parse/v2 v2.7.4 // indirect
|
2023-11-05 18:57:35 +01:00
|
|
|
github.com/x448/float16 v0.8.4 // indirect
|
2023-10-06 00:25:12 +02:00
|
|
|
golang.org/x/sys v0.13.0 // indirect
|
2023-09-19 00:39:55 +02:00
|
|
|
golang.org/x/text v0.13.0 // indirect
|
2023-10-21 00:14:19 +02:00
|
|
|
google.golang.org/appengine v1.6.8 // 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
|