2021-10-24 04:29:45 +03:00
|
|
|
module heckel.io/ntfy
|
2021-10-23 01:54:02 +03:00
|
|
|
|
2021-11-02 21:08:21 +03:00
|
|
|
go 1.17
|
2021-10-23 04:26:01 +03:00
|
|
|
|
2021-10-24 04:29:45 +03:00
|
|
|
require (
|
2021-11-02 21:08:21 +03:00
|
|
|
cloud.google.com/go/firestore v1.6.1 // indirect
|
2022-04-21 16:58:28 +03:00
|
|
|
cloud.google.com/go/storage v1.22.0 // indirect
|
2021-10-29 06:50:38 +03:00
|
|
|
firebase.google.com/go v3.13.0+incompatible
|
2022-04-07 03:33:19 +03:00
|
|
|
github.com/BurntSushi/toml v1.1.0 // indirect
|
2022-05-10 18:50:48 +03:00
|
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
|
2021-12-27 17:48:09 +03:00
|
|
|
github.com/emersion/go-smtp v0.15.0
|
2022-01-22 22:47:27 +03:00
|
|
|
github.com/gabriel-vasile/mimetype v1.4.0
|
2022-03-16 21:50:00 +03:00
|
|
|
github.com/gorilla/websocket v1.5.0
|
|
|
|
github.com/mattn/go-sqlite3 v1.14.12
|
2021-12-16 00:12:40 +03:00
|
|
|
github.com/olebedev/when v0.0.0-20211212231525-59bd4edcf9d6
|
2021-12-07 19:45:15 +03:00
|
|
|
github.com/stretchr/testify v1.7.0
|
2022-05-10 18:50:48 +03:00
|
|
|
github.com/urfave/cli/v2 v2.6.0
|
|
|
|
golang.org/x/crypto v0.0.0-20220507011949-2cf3adece122
|
2022-04-21 16:58:28 +03:00
|
|
|
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 // indirect
|
2022-01-22 22:47:27 +03:00
|
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
2022-04-21 16:58:28 +03:00
|
|
|
golang.org/x/term v0.0.0-20220411215600-e5f449aeb171
|
|
|
|
golang.org/x/time v0.0.0-20220411224347-583f2d630306
|
2022-05-11 05:10:38 +03:00
|
|
|
google.golang.org/api v0.79.0
|
2021-12-18 22:43:27 +03:00
|
|
|
gopkg.in/yaml.v2 v2.4.0
|
2021-10-24 04:29:45 +03:00
|
|
|
)
|
2021-11-02 21:08:21 +03:00
|
|
|
|
2022-04-22 03:35:25 +03:00
|
|
|
require github.com/pkg/errors v0.9.1 // indirect
|
2022-04-20 23:31:25 +03:00
|
|
|
|
2021-11-02 21:08:21 +03:00
|
|
|
require (
|
2022-05-10 18:50:48 +03:00
|
|
|
cloud.google.com/go v0.101.1 // indirect
|
2022-04-25 03:32:17 +03:00
|
|
|
cloud.google.com/go/compute v1.6.1 // indirect
|
2022-03-16 21:50:00 +03:00
|
|
|
cloud.google.com/go/iam v0.3.0 // indirect
|
2022-03-23 02:54:20 +03:00
|
|
|
github.com/AlekSi/pointer v1.2.0 // indirect
|
2021-12-11 03:59:51 +03:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2022-02-01 20:11:52 +03:00
|
|
|
github.com/emersion/go-sasl v0.0.0-20211008083017-0b9dcfb154ac // indirect
|
2021-11-02 21:08:21 +03:00
|
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
2022-05-10 18:50:48 +03:00
|
|
|
github.com/google/go-cmp v0.5.8 // indirect
|
2022-04-21 16:58:28 +03:00
|
|
|
github.com/googleapis/gax-go/v2 v2.3.0 // indirect
|
|
|
|
github.com/googleapis/go-type-adapters v1.0.0 // indirect
|
2021-12-07 19:45:15 +03:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2021-11-02 21:08:21 +03:00
|
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
|
|
go.opencensus.io v0.23.0 // indirect
|
2022-05-10 18:50:48 +03:00
|
|
|
golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4 // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6 // indirect
|
2021-11-02 21:08:21 +03:00
|
|
|
golang.org/x/text v0.3.7 // indirect
|
2022-04-21 16:58:28 +03:00
|
|
|
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
|
2021-11-02 21:08:21 +03:00
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
2022-05-10 18:50:48 +03:00
|
|
|
google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3 // indirect
|
2022-04-25 03:32:17 +03:00
|
|
|
google.golang.org/grpc v1.46.0 // indirect
|
2022-03-23 02:54:20 +03:00
|
|
|
google.golang.org/protobuf v1.28.0 // indirect
|
2021-12-07 19:45:15 +03:00
|
|
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
|
2021-11-02 21:08:21 +03:00
|
|
|
)
|