2023-08-10 00:15:55 -04:00
|
|
|
module miniflux.app/v2
|
2018-08-26 19:43:53 -04:00
|
|
|
|
2024-02-21 23:52:11 -05:00
|
|
|
// +heroku goVersion go1.22
|
2018-08-29 23:45:49 -04:00
|
|
|
|
2018-08-26 19:43:53 -04:00
|
|
|
require (
|
2024-02-29 17:23:35 -05:00
|
|
|
github.com/PuerkitoBio/goquery v1.9.1
|
2023-10-06 23:57:53 -04:00
|
|
|
github.com/abadojack/whatlanggo v1.0.1
|
2023-12-11 17:14:55 -05:00
|
|
|
github.com/coreos/go-oidc/v3 v3.9.0
|
2024-03-14 18:43:24 -04:00
|
|
|
github.com/go-webauthn/webauthn v0.10.2
|
2023-11-06 17:45:19 -05:00
|
|
|
github.com/gorilla/mux v1.8.1
|
2023-04-26 18:56:46 -04:00
|
|
|
github.com/lib/pq v1.10.9
|
2024-02-28 00:02:18 -05:00
|
|
|
github.com/prometheus/client_golang v1.19.0
|
2024-03-12 18:46:56 -04:00
|
|
|
github.com/tdewolff/minify/v2 v2.20.19
|
2024-02-02 17:10:31 -05:00
|
|
|
github.com/yuin/goldmark v1.7.0
|
2024-03-04 17:30:29 -05:00
|
|
|
golang.org/x/crypto v0.21.0
|
|
|
|
golang.org/x/net v0.22.0
|
2024-03-05 17:43:45 -05:00
|
|
|
golang.org/x/oauth2 v0.18.0
|
2024-03-04 17:30:29 -05:00
|
|
|
golang.org/x/term v0.18.0
|
2023-04-17 18:56:47 -04:00
|
|
|
mvdan.cc/xurls/v2 v2.5.0
|
2018-08-26 19:43:53 -04:00
|
|
|
)
|
2019-09-06 00:39:32 -04:00
|
|
|
|
2022-11-13 17:46:14 -05:00
|
|
|
require (
|
2024-03-14 18:43:24 -04:00
|
|
|
github.com/go-webauthn/x v0.1.9 // indirect
|
|
|
|
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
|
2023-11-05 12:57:35 -05:00
|
|
|
github.com/google/go-tpm v0.9.0 // indirect
|
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/andybalholm/cascadia v1.3.2 // indirect
|
2022-11-13 17:46:14 -05:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2023-04-13 18:57:09 -04:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
2024-03-14 18:43:24 -04:00
|
|
|
github.com/fxamacker/cbor/v2 v2.6.0 // indirect
|
2024-03-07 17:59:01 -05:00
|
|
|
github.com/go-jose/go-jose/v3 v3.0.3 // indirect
|
2023-04-13 18:57:09 -04:00
|
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
2024-02-26 08:53:16 -05:00
|
|
|
github.com/google/uuid v1.6.0 // indirect
|
2023-11-05 12:57:35 -05:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
2023-12-30 23:56:50 -05:00
|
|
|
github.com/prometheus/client_model v0.5.0 // indirect
|
2024-02-28 00:02:18 -05:00
|
|
|
github.com/prometheus/common v0.48.0 // indirect
|
2023-12-30 23:56:50 -05:00
|
|
|
github.com/prometheus/procfs v0.12.0 // indirect
|
2024-02-19 17:36:45 -05:00
|
|
|
github.com/tdewolff/parse/v2 v2.7.12 // indirect
|
2023-11-05 12:57:35 -05:00
|
|
|
github.com/x448/float16 v0.8.4 // indirect
|
2024-03-04 17:30:29 -05:00
|
|
|
golang.org/x/sys v0.18.0 // indirect
|
2023-11-08 17:15:52 -05:00
|
|
|
golang.org/x/text v0.14.0 // indirect
|
2023-10-20 18:14:19 -04:00
|
|
|
google.golang.org/appengine v1.6.8 // indirect
|
2024-03-13 19:38:14 -04:00
|
|
|
google.golang.org/protobuf v1.33.0 // indirect
|
2022-11-13 17:46:14 -05:00
|
|
|
)
|
|
|
|
|
2024-02-21 23:52:11 -05:00
|
|
|
go 1.22
|