4
0

go.mod 971 B

1234567891011121314151617181920212223242526
  1. module miniflux.app
  2. // +heroku goVersion go1.16
  3. require (
  4. github.com/PuerkitoBio/goquery v1.7.1
  5. github.com/coreos/go-oidc v2.2.1+incompatible
  6. github.com/felixge/httpsnoop v1.0.1 // indirect
  7. github.com/golang/gddo v0.0.0-20200831202555-721e228c7686 // indirect
  8. github.com/gorilla/mux v1.8.0
  9. github.com/lib/pq v1.10.2
  10. github.com/mitchellh/go-server-timing v1.0.2-0.20201108055052-feb680ab92c2
  11. github.com/pquerna/cachecontrol v0.0.0-20180517163645-1555304b9b35 // indirect
  12. github.com/prometheus/client_golang v1.11.0
  13. github.com/rylans/getlang v0.0.0-20200505200108-4c3188ff8a2d
  14. github.com/stretchr/testify v1.6.1 // indirect
  15. github.com/tdewolff/minify/v2 v2.9.21
  16. golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
  17. golang.org/x/net v0.0.0-20210614182718-04defd469f4e
  18. golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
  19. google.golang.org/appengine v1.6.6 // indirect
  20. gopkg.in/square/go-jose.v2 v2.5.0 // indirect
  21. mvdan.cc/xurls/v2 v2.3.0
  22. )
  23. go 1.16