2023-08-09 21:15:55 -07:00
|
|
|
module miniflux.app/v2
|
2018-08-26 16:43:53 -07:00
|
|
|
|
2024-09-07 15:01:26 -07:00
|
|
|
// +heroku goVersion go1.23
|
2018-08-29 20:45:49 -07:00
|
|
|
|
2018-08-26 16:43:53 -07:00
|
|
|
require (
|
2024-12-27 22:23:36 +00:00
|
|
|
github.com/PuerkitoBio/goquery v1.10.1
|
2024-10-09 22:31:19 +00:00
|
|
|
github.com/andybalholm/brotli v1.1.1
|
2025-01-06 22:47:33 +00:00
|
|
|
github.com/coreos/go-oidc/v3 v3.12.0
|
2024-09-07 15:31:08 -07:00
|
|
|
github.com/go-webauthn/webauthn v0.11.2
|
2023-11-06 22:45:19 +00:00
|
|
|
github.com/gorilla/mux v1.8.1
|
2023-04-26 22:56:46 +00:00
|
|
|
github.com/lib/pq v1.10.9
|
2024-12-29 23:09:26 +00:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.24
|
2024-10-15 22:28:10 +00:00
|
|
|
github.com/prometheus/client_golang v1.20.5
|
2025-01-14 22:39:26 +00:00
|
|
|
github.com/tdewolff/minify/v2 v2.21.3
|
2025-01-06 22:47:23 +00:00
|
|
|
golang.org/x/crypto v0.32.0
|
2025-02-05 01:44:51 +00:00
|
|
|
golang.org/x/image v0.24.0
|
2025-01-12 00:52:35 +00:00
|
|
|
golang.org/x/net v0.34.0
|
2025-02-04 22:43:59 +00:00
|
|
|
golang.org/x/oauth2 v0.26.0
|
2025-02-05 01:34:25 +00:00
|
|
|
golang.org/x/term v0.29.0
|
2018-08-26 16:43:53 -07:00
|
|
|
)
|
2019-09-05 21:39:32 -07:00
|
|
|
|
2022-11-13 14:46:14 -08:00
|
|
|
require (
|
2024-09-07 15:31:08 -07:00
|
|
|
github.com/go-webauthn/x v0.1.14 // indirect
|
2024-03-14 22:43:24 +00:00
|
|
|
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
|
2024-09-07 15:31:08 -07:00
|
|
|
github.com/google/go-tpm v0.9.1 // indirect
|
2023-11-06 04:27:35 +10:30
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2024-12-27 22:23:36 +00:00
|
|
|
github.com/andybalholm/cascadia v1.3.3 // indirect
|
2022-11-13 14:46:14 -08:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2024-08-14 22:02:30 +00:00
|
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
2024-09-07 15:31:08 -07:00
|
|
|
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
|
2024-07-08 22:52:34 +00:00
|
|
|
github.com/go-jose/go-jose/v4 v4.0.2 // indirect
|
2024-02-26 14:53:16 +01:00
|
|
|
github.com/google/uuid v1.6.0 // indirect
|
2024-08-14 22:02:30 +00:00
|
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
2023-11-06 04:27:35 +10:30
|
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
2024-08-14 22:02:30 +00:00
|
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
|
|
github.com/prometheus/common v0.55.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
2024-11-25 22:13:12 +00:00
|
|
|
github.com/tdewolff/parse/v2 v2.7.19 // indirect
|
2023-11-06 04:27:35 +10:30
|
|
|
github.com/x448/float16 v0.8.4 // indirect
|
2025-02-05 01:34:25 +00:00
|
|
|
golang.org/x/sys v0.30.0 // indirect
|
2025-02-05 01:44:51 +00:00
|
|
|
golang.org/x/text v0.22.0 // indirect
|
2024-08-14 22:02:30 +00:00
|
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
2022-11-13 14:46:14 -08:00
|
|
|
)
|
|
|
|
|
2024-09-07 15:01:26 -07:00
|
|
|
go 1.23
|