2023-08-10 06:15:55 +02:00
|
|
|
module miniflux.app/v2
|
2018-08-27 01:43:53 +02:00
|
|
|
|
2024-02-22 05:52:11 +01:00
|
|
|
// +heroku goVersion go1.22
|
2018-08-30 05:45:49 +02:00
|
|
|
|
2018-08-27 01:43:53 +02:00
|
|
|
require (
|
2024-05-01 00:15:17 +02:00
|
|
|
github.com/PuerkitoBio/goquery v1.9.2
|
2023-10-07 05:57:53 +02:00
|
|
|
github.com/abadojack/whatlanggo v1.0.1
|
2024-04-19 20:43:20 +02:00
|
|
|
github.com/andybalholm/brotli v1.1.0
|
2024-03-19 23:34:21 +01:00
|
|
|
github.com/coreos/go-oidc/v3 v3.10.0
|
2024-03-14 23:43:24 +01:00
|
|
|
github.com/go-webauthn/webauthn v0.10.2
|
2023-11-06 23:45:19 +01:00
|
|
|
github.com/gorilla/mux v1.8.1
|
2023-04-27 00:56:46 +02:00
|
|
|
github.com/lib/pq v1.10.9
|
2024-05-10 00:49:15 +02:00
|
|
|
github.com/prometheus/client_golang v1.19.1
|
2024-07-03 00:16:47 +02:00
|
|
|
github.com/tdewolff/minify/v2 v2.20.35
|
2024-06-26 00:29:32 +02:00
|
|
|
github.com/yuin/goldmark v1.7.4
|
2024-07-06 00:52:04 +02:00
|
|
|
golang.org/x/crypto v0.25.0
|
2024-06-05 04:40:31 +02:00
|
|
|
golang.org/x/net v0.26.0
|
2024-06-05 04:15:42 +02:00
|
|
|
golang.org/x/oauth2 v0.21.0
|
2024-07-05 00:46:30 +02:00
|
|
|
golang.org/x/term v0.22.0
|
2024-06-05 04:15:43 +02:00
|
|
|
golang.org/x/text v0.16.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 (
|
2024-03-14 23:43:24 +01:00
|
|
|
github.com/go-webauthn/x v0.1.9 // indirect
|
|
|
|
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
|
2023-11-05 18:57:35 +01:00
|
|
|
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
|
2024-03-14 23:43:24 +01:00
|
|
|
github.com/fxamacker/cbor/v2 v2.6.0 // indirect
|
2024-03-19 23:34:21 +01:00
|
|
|
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
|
2024-02-26 14:53:16 +01:00
|
|
|
github.com/google/uuid v1.6.0 // indirect
|
2023-11-05 18:57:35 +01:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
2023-12-31 05:56:50 +01:00
|
|
|
github.com/prometheus/client_model v0.5.0 // indirect
|
2024-02-28 06:02:18 +01:00
|
|
|
github.com/prometheus/common v0.48.0 // indirect
|
2023-12-31 05:56:50 +01:00
|
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
2024-06-12 00:37:28 +02:00
|
|
|
github.com/tdewolff/parse/v2 v2.7.15 // indirect
|
2023-11-05 18:57:35 +01:00
|
|
|
github.com/x448/float16 v0.8.4 // indirect
|
2024-07-05 00:46:30 +02:00
|
|
|
golang.org/x/sys v0.22.0 // indirect
|
2024-03-14 00:38:14 +01:00
|
|
|
google.golang.org/protobuf v1.33.0 // indirect
|
2022-11-13 23:46:14 +01:00
|
|
|
)
|
|
|
|
|
2024-02-22 05:52:11 +01:00
|
|
|
go 1.22
|