ntfy/go.mod

74 lines
2.8 KiB
Modula-2
Raw Normal View History

module heckel.io/ntfy
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 (
2022-12-05 02:38:38 +01:00
cloud.google.com/go/firestore v1.9.0 // indirect
2023-03-22 21:26:00 +01:00
cloud.google.com/go/storage v1.30.1 // indirect
2022-11-02 19:07:26 +01:00
github.com/BurntSushi/toml v1.2.1 // indirect
2022-05-10 17:50:48 +02:00
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
2023-02-15 02:56:02 +01:00
github.com/emersion/go-smtp v0.16.0
2023-03-14 15:20:41 +01:00
github.com/gabriel-vasile/mimetype v1.4.2
2022-03-16 19:50:00 +01:00
github.com/gorilla/websocket v1.5.0
2022-11-02 19:07:26 +01:00
github.com/mattn/go-sqlite3 v1.14.16
2022-12-23 14:38:45 +01:00
github.com/olebedev/when v0.0.0-20221205223600-4d190b02b8d8
github.com/stretchr/testify v1.8.1
2023-03-28 20:41:16 +02:00
github.com/urfave/cli/v2 v2.25.1
2023-03-14 15:20:41 +01:00
golang.org/x/crypto v0.7.0
golang.org/x/oauth2 v0.6.0 // indirect
2022-11-02 19:07:26 +01:00
golang.org/x/sync v0.1.0
2023-03-14 15:20:41 +01:00
golang.org/x/term v0.6.0
2022-12-05 02:38:38 +01:00
golang.org/x/time v0.3.0
2023-03-18 02:35:11 +01:00
google.golang.org/api v0.114.0
2021-12-18 20:43:27 +01:00
gopkg.in/yaml.v2 v2.4.0
)
2021-11-02 19:08:21 +01:00
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 (
firebase.google.com/go/v4 v4.10.0
2023-03-14 15:19:15 +01:00
github.com/prometheus/client_golang v1.14.0
2023-03-28 20:41:16 +02:00
github.com/stripe/stripe-go/v74 v74.13.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-02-15 21:41:41 +01:00
cloud.google.com/go v0.110.0 // indirect
2023-03-28 20:41:16 +02:00
cloud.google.com/go/compute v1.19.0 // indirect
2022-12-23 14:38:45 +01:00
cloud.google.com/go/compute/metadata v0.2.3 // indirect
2023-03-17 03:44:18 +01:00
cloud.google.com/go/iam v0.13.0 // indirect
2023-02-15 02:56:02 +01:00
cloud.google.com/go/longrunning v0.4.1 // 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
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
2022-09-23 18:42:44 +02:00
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/uuid v1.3.0 // indirect
2023-02-15 02:56:02 +01:00
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
2023-03-17 03:44:18 +01:00
github.com/googleapis/gax-go/v2 v2.8.0 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
2021-12-07 17:45:15 +01:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2023-03-07 04:16:10 +01:00
github.com/prometheus/client_model v0.3.0 // indirect
2023-03-17 03:44:18 +01:00
github.com/prometheus/common v0.42.0 // indirect
github.com/prometheus/procfs v0.9.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-03-14 15:20:41 +01:00
golang.org/x/net v0.8.0 // indirect
2023-03-04 22:51:55 +01:00
golang.org/x/sys v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
2022-09-23 18:42:44 +02:00
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
2021-11-02 19:08:21 +01:00
google.golang.org/appengine v1.6.7 // indirect
2022-08-19 02:22:48 +02:00
google.golang.org/appengine/v2 v2.0.2 // indirect
2023-03-28 20:41:16 +02:00
google.golang.org/genproto v0.0.0-20230327215041-6ac7f18bb9d5 // indirect
2023-03-22 21:26:00 +01:00
google.golang.org/grpc v1.54.0 // indirect
2023-03-17 03:44:18 +01:00
google.golang.org/protobuf v1.30.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
)