cb228e73ad
- Remove dependency on `go-telegram-bot-api` - Add new options: optional topic ID, disable page preview, disable notifications - Add new button to go to article
39 lines
1.2 KiB
Modula-2
39 lines
1.2 KiB
Modula-2
module miniflux.app/v2
|
|
|
|
// +heroku goVersion go1.21
|
|
|
|
require (
|
|
github.com/PuerkitoBio/goquery v1.8.1
|
|
github.com/coreos/go-oidc/v3 v3.6.0
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/lib/pq v1.10.9
|
|
github.com/mccutchen/go-httpbin/v2 v2.11.0
|
|
github.com/prometheus/client_golang v1.16.0
|
|
github.com/rylans/getlang v0.0.0-20201227074721-9e7f44ff8aa0
|
|
github.com/tdewolff/minify/v2 v2.12.8
|
|
github.com/yuin/goldmark v1.5.6
|
|
golang.org/x/crypto v0.12.0
|
|
golang.org/x/net v0.14.0
|
|
golang.org/x/oauth2 v0.11.0
|
|
golang.org/x/term v0.11.0
|
|
mvdan.cc/xurls/v2 v2.5.0
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/cascadia v1.3.1 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
|
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
|
github.com/prometheus/client_model v0.3.0 // indirect
|
|
github.com/prometheus/common v0.42.0 // indirect
|
|
github.com/prometheus/procfs v0.10.1 // indirect
|
|
github.com/tdewolff/parse/v2 v2.6.7 // indirect
|
|
golang.org/x/sys v0.11.0 // indirect
|
|
golang.org/x/text v0.12.0 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/protobuf v1.31.0 // indirect
|
|
)
|
|
|
|
go 1.21
|