forked from mirrors/ntfy
1
0
Fork 0
ntfy/go.mod

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

75 lines
2.9 KiB
Modula-2
Raw Permalink Normal View History

module heckel.io/ntfy
2021-10-22 22:54:02 +00:00
2022-10-01 19:50:48 +00:00
go 1.18
2021-10-23 01:26:01 +00:00
require (
2022-12-05 01:38:38 +00:00
cloud.google.com/go/firestore v1.9.0 // indirect
2023-03-22 20:26:00 +00:00
cloud.google.com/go/storage v1.30.1 // indirect
2022-11-02 18:07:26 +00:00
github.com/BurntSushi/toml v1.2.1 // indirect
2022-05-10 15:50:48 +00:00
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
2023-02-15 01:56:02 +00:00
github.com/emersion/go-smtp v0.16.0
2023-03-14 14:20:41 +00:00
github.com/gabriel-vasile/mimetype v1.4.2
2022-03-16 18:50:00 +00:00
github.com/gorilla/websocket v1.5.0
2022-11-02 18:07:26 +00:00
github.com/mattn/go-sqlite3 v1.14.16
2022-12-23 13:38:45 +00:00
github.com/olebedev/when v0.0.0-20221205223600-4d190b02b8d8
github.com/stretchr/testify v1.8.1
2023-05-07 16:17:25 +00:00
github.com/urfave/cli/v2 v2.25.3
2023-05-15 15:03:19 +00:00
golang.org/x/crypto v0.9.0
golang.org/x/oauth2 v0.8.0 // indirect
2023-05-07 16:17:25 +00:00
golang.org/x/sync v0.2.0
golang.org/x/term v0.8.0
2022-12-05 01:38:38 +00:00
golang.org/x/time v0.3.0
2023-05-15 15:03:19 +00:00
google.golang.org/api v0.122.0
2021-12-18 19:43:27 +00:00
gopkg.in/yaml.v2 v2.4.0
)
2021-11-02 18:08:21 +00:00
2022-04-22 00:35:25 +00:00
require github.com/pkg/errors v0.9.1 // indirect
2022-04-20 20:31:25 +00:00
2023-01-18 20:50:06 +00:00
require (
2023-04-20 02:17:10 +00:00
firebase.google.com/go/v4 v4.11.0
2023-05-07 16:17:25 +00:00
github.com/prometheus/client_golang v1.15.1
2023-05-15 15:03:19 +00:00
github.com/stripe/stripe-go/v74 v74.18.0
2023-01-18 20:50:06 +00:00
)
2022-05-30 00:48:14 +00:00
2021-11-02 18:08:21 +00:00
require (
2023-05-15 15:03:19 +00:00
cloud.google.com/go v0.110.2 // indirect
2023-05-17 14:39:15 +00:00
cloud.google.com/go/compute v1.19.3 // indirect
2022-12-23 13:38:45 +00:00
cloud.google.com/go/compute/metadata v0.2.3 // indirect
2023-05-15 15:03:19 +00:00
cloud.google.com/go/iam v1.0.1 // indirect
cloud.google.com/go/longrunning v0.4.2 // indirect
2022-03-22 23:54:20 +00:00
github.com/AlekSi/pointer v1.2.0 // indirect
2022-12-23 13:38:45 +00:00
github.com/MicahParks/keyfunc v1.9.0 // indirect
2023-03-07 03:16:10 +00:00
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2021-12-11 00:59:51 +00:00
github.com/davecgh/go-spew v1.1.1 // indirect
2022-09-23 16:42:44 +00:00
github.com/emersion/go-sasl v0.0.0-20220912192320-0145f2c60ead // indirect
2023-02-26 02:20:58 +00:00
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
2021-11-02 18:08:21 +00:00
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
2023-03-14 14:20:41 +00:00
github.com/golang/protobuf v1.5.3 // indirect
2022-09-23 16:42:44 +00:00
github.com/google/go-cmp v0.5.9 // indirect
2023-05-07 16:17:25 +00:00
github.com/google/s2a-go v0.1.3 // indirect
github.com/google/uuid v1.3.0 // indirect
2023-02-15 01:56:02 +00:00
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
2023-03-17 02:44:18 +00:00
github.com/googleapis/gax-go/v2 v2.8.0 // indirect
2023-04-26 16:36:00 +00:00
github.com/kr/text v0.2.0 // indirect
2023-03-17 02:44:18 +00:00
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
2021-12-07 16:45:15 +00:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2023-05-07 16:17:25 +00:00
github.com/prometheus/client_model v0.4.0 // indirect
github.com/prometheus/common v0.43.0 // indirect
2023-03-17 02:44:18 +00:00
github.com/prometheus/procfs v0.9.0 // indirect
2021-11-02 18:08:21 +00:00
github.com/russross/blackfriday/v2 v2.1.0 // indirect
2023-01-19 04:01:26 +00:00
github.com/stretchr/objx v0.5.0 // indirect
2022-05-26 01:41:14 +00:00
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
go.opencensus.io v0.24.0 // indirect
2023-05-15 15:03:19 +00:00
golang.org/x/net v0.10.0 // indirect
2023-05-07 16:17:25 +00:00
golang.org/x/sys v0.8.0 // indirect
2023-04-20 02:17:10 +00:00
golang.org/x/text v0.9.0 // indirect
2022-09-23 16:42:44 +00:00
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
2021-11-02 18:08:21 +00:00
google.golang.org/appengine v1.6.7 // indirect
2023-04-20 02:17:10 +00:00
google.golang.org/appengine/v2 v2.0.3 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
2023-05-07 16:17:25 +00:00
google.golang.org/grpc v1.55.0 // indirect
2023-03-17 02:44:18 +00:00
google.golang.org/protobuf v1.30.0 // indirect
2022-06-23 18:46:01 +00:00
gopkg.in/yaml.v3 v3.0.1 // indirect
2021-11-02 18:08:21 +00:00
)