ntfy/go.mod

80 lines
3.2 KiB
Modula-2
Raw Permalink Normal View History

2023-11-12 18:35:19 +01:00
module git.zio.sh/astra/ntfy/v2
2021-10-23 00:54:02 +02:00
2022-10-01 21:50:48 +02:00
go 1.18
2021-10-23 03:26:01 +02:00
require (
2023-11-06 11:48:47 +01:00
cloud.google.com/go/firestore v1.14.0 // indirect
cloud.google.com/go/storage v1.34.1 // indirect
2023-06-25 18:58:18 +02:00
github.com/BurntSushi/toml v1.3.2 // indirect
2023-10-19 13:18:03 +02:00
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
2023-08-17 21:42:40 +02:00
github.com/emersion/go-smtp v0.18.0
2023-10-19 13:18:03 +02:00
github.com/gabriel-vasile/mimetype v1.4.3
2023-11-06 11:48:47 +01:00
github.com/gorilla/websocket v1.5.1
github.com/mattn/go-sqlite3 v1.14.18
2023-06-07 19:24:15 +02:00
github.com/olebedev/when v1.0.0
github.com/stretchr/testify v1.8.1
2023-06-25 18:58:18 +02:00
github.com/urfave/cli/v2 v2.25.7
2023-10-19 13:18:03 +02:00
golang.org/x/crypto v0.14.0
golang.org/x/oauth2 v0.13.0 // indirect
2023-11-06 11:48:47 +01:00
golang.org/x/sync v0.5.0
2023-10-19 13:18:03 +02:00
golang.org/x/term v0.13.0
2023-11-06 11:48:47 +01:00
golang.org/x/time v0.4.0
google.golang.org/api v0.149.0
2021-12-18 20:43:27 +01:00
gopkg.in/yaml.v2 v2.4.0
)
2021-11-02 19:08:21 +01:00
2023-08-17 22:05:51 +02:00
replace github.com/emersion/go-smtp => github.com/emersion/go-smtp v0.17.0 // Pin version due to breaking changes, see #839
2022-04-22 02:35:25 +02:00
require github.com/pkg/errors v0.9.1 // indirect
2022-04-20 22:31:25 +02:00
2023-01-18 21:50:06 +01:00
require (
2023-10-02 17:49:27 +02:00
firebase.google.com/go/v4 v4.12.1
2023-10-19 13:18:03 +02:00
github.com/SherClockHolmes/webpush-go v1.3.0
2023-10-02 17:49:27 +02:00
github.com/prometheus/client_golang v1.17.0
2023-08-17 21:42:40 +02:00
github.com/stripe/stripe-go/v74 v74.30.0
2023-01-18 21:50:06 +01:00
)
2022-05-30 02:48:14 +02:00
2021-11-02 19:08:21 +01:00
require (
2023-11-06 11:48:47 +01:00
cloud.google.com/go v0.110.10 // indirect
cloud.google.com/go/compute v1.23.3 // indirect
2022-12-23 14:38:45 +01:00
cloud.google.com/go/compute/metadata v0.2.3 // indirect
2023-11-06 11:48:47 +01:00
cloud.google.com/go/iam v1.1.5 // indirect
cloud.google.com/go/longrunning v0.5.4 // indirect
2022-03-23 00:54:20 +01:00
github.com/AlekSi/pointer v1.2.0 // indirect
2022-12-23 14:38:45 +01:00
github.com/MicahParks/keyfunc v1.9.0 // indirect
2023-03-07 04:16:10 +01:00
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2021-12-11 01:59:51 +01:00
github.com/davecgh/go-spew v1.1.1 // indirect
2022-09-23 18:42:44 +02:00
github.com/emersion/go-sasl v0.0.0-20220912192320-0145f2c60ead // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
2023-02-26 03:20:58 +01:00
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
2021-11-02 19:08:21 +01:00
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
2023-03-14 15:20:41 +01:00
github.com/golang/protobuf v1.5.3 // indirect
2023-09-24 17:05:21 +02:00
github.com/google/s2a-go v0.1.7 // indirect
2023-11-06 11:48:47 +01:00
github.com/google/uuid v1.4.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
2023-07-09 13:51:33 +02:00
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
2023-04-26 18:36:00 +02:00
github.com/kr/text v0.2.0 // indirect
2023-10-19 13:18:03 +02:00
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
2021-12-07 17:45:15 +01:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2023-10-19 13:18:03 +02:00
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/common v0.45.0 // indirect
2023-09-24 17:05:21 +02:00
github.com/prometheus/procfs v0.12.0 // indirect
2021-11-02 19:08:21 +01:00
github.com/russross/blackfriday/v2 v2.1.0 // indirect
2023-01-19 05:01:26 +01:00
github.com/stretchr/objx v0.5.0 // indirect
2022-05-26 03:41:14 +02:00
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
go.opencensus.io v0.24.0 // indirect
2023-10-19 13:18:03 +02:00
golang.org/x/net v0.17.0 // indirect
2023-11-06 11:48:47 +01:00
golang.org/x/sys v0.14.0 // indirect
golang.org/x/text v0.14.0 // indirect
2023-10-19 13:18:03 +02:00
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
2023-09-24 17:05:21 +02:00
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/appengine/v2 v2.0.5 // indirect
2023-11-06 11:48:47 +01:00
google.golang.org/genproto v0.0.0-20231030173426-d783a09b4405 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20231030173426-d783a09b4405 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405 // indirect
2023-10-19 13:18:03 +02:00
google.golang.org/grpc v1.59.0 // indirect
2023-06-28 16:38:11 +02:00
google.golang.org/protobuf v1.31.0 // indirect
2022-06-23 20:46:01 +02:00
gopkg.in/yaml.v3 v3.0.1 // indirect
2021-11-02 19:08:21 +01:00
)