2023-08-10 00:15:55 -04:00
|
|
|
module miniflux.app/v2
|
2018-08-26 19:43:53 -04:00
|
|
|
|
2023-08-09 00:54:09 -04:00
|
|
|
// +heroku goVersion go1.21
|
2018-08-29 23:45:49 -04:00
|
|
|
|
2018-08-26 19:43:53 -04:00
|
|
|
require (
|
2023-02-20 17:56:37 -05:00
|
|
|
github.com/PuerkitoBio/goquery v1.8.1
|
2023-10-06 23:57:53 -04:00
|
|
|
github.com/abadojack/whatlanggo v1.0.1
|
2023-06-27 23:21:51 -04:00
|
|
|
github.com/coreos/go-oidc/v3 v3.6.0
|
2020-08-24 02:30:32 -04:00
|
|
|
github.com/gorilla/mux v1.8.0
|
2023-04-26 18:56:46 -04:00
|
|
|
github.com/lib/pq v1.10.9
|
2023-10-06 18:53:19 -04:00
|
|
|
github.com/mccutchen/go-httpbin/v2 v2.11.1
|
2023-09-27 18:20:32 -04:00
|
|
|
github.com/prometheus/client_golang v1.17.0
|
2023-09-18 23:27:16 -04:00
|
|
|
github.com/tdewolff/minify/v2 v2.12.9
|
2023-08-17 18:07:43 -04:00
|
|
|
github.com/yuin/goldmark v1.5.6
|
2023-10-05 22:07:11 -04:00
|
|
|
golang.org/x/crypto v0.14.0
|
2023-10-10 18:02:08 -04:00
|
|
|
golang.org/x/net v0.17.0
|
2023-10-06 18:53:04 -04:00
|
|
|
golang.org/x/oauth2 v0.13.0
|
2023-10-05 18:25:12 -04:00
|
|
|
golang.org/x/term v0.13.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 (
|
|
|
|
github.com/andybalholm/cascadia v1.3.1 // indirect
|
|
|
|
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
|
2023-06-27 23:21:51 -04:00
|
|
|
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
|
2023-04-13 18:57:09 -04:00
|
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
2022-11-13 17:46:14 -05:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
2023-09-27 18:20:32 -04: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-10-06 23:57:53 -04:00
|
|
|
github.com/stretchr/testify v1.8.4 // indirect
|
2023-09-18 23:27:16 -04:00
|
|
|
github.com/tdewolff/parse/v2 v2.6.8 // indirect
|
2023-10-05 18:25:12 -04:00
|
|
|
golang.org/x/sys v0.13.0 // indirect
|
2023-09-18 18:39:55 -04:00
|
|
|
golang.org/x/text v0.13.0 // indirect
|
2022-11-13 17:46:14 -05:00
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
2023-07-05 18:53:36 -04:00
|
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
2022-11-13 17:46:14 -05:00
|
|
|
)
|
|
|
|
|
2023-08-09 00:54:09 -04:00
|
|
|
go 1.21
|