ntfy/go.mod

52 lines
2.1 KiB
Modula-2
Raw Normal View History

module heckel.io/ntfy
2021-10-23 00:54:02 +02:00
2021-11-02 19:08:21 +01:00
go 1.17
2021-10-23 03:26:01 +02:00
require (
2021-11-02 19:08:21 +01:00
cloud.google.com/go/firestore v1.6.1 // indirect
2022-03-16 19:50:00 +01:00
cloud.google.com/go/storage v1.21.0 // indirect
2021-10-29 05:50:38 +02:00
firebase.google.com/go v3.13.0+incompatible
2022-02-01 18:11:52 +01:00
github.com/BurntSushi/toml v1.0.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
2021-12-27 15:48:09 +01:00
github.com/emersion/go-smtp v0.15.0
2022-01-22 20:47:27 +01:00
github.com/gabriel-vasile/mimetype v1.4.0
2022-03-16 19:50:00 +01:00
github.com/gorilla/websocket v1.5.0
github.com/mattn/go-sqlite3 v1.14.12
github.com/olebedev/when v0.0.0-20211212231525-59bd4edcf9d6
2021-12-07 17:45:15 +01:00
github.com/stretchr/testify v1.7.0
2022-03-16 19:50:00 +01:00
github.com/urfave/cli/v2 v2.4.0
2022-01-22 20:47:27 +01:00
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
2022-03-16 19:50:00 +01:00
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a // indirect
2022-01-22 20:47:27 +01:00
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
2022-02-01 18:11:52 +01:00
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
2022-03-16 19:50:00 +01:00
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65
google.golang.org/api v0.73.0
2021-12-18 20:43:27 +01:00
gopkg.in/yaml.v2 v2.4.0
)
2021-11-02 19:08:21 +01:00
require (
2022-02-01 18:11:52 +01:00
cloud.google.com/go v0.100.2 // indirect
2022-03-16 19:50:00 +01:00
cloud.google.com/go/compute v1.5.0 // indirect
cloud.google.com/go/iam v0.3.0 // indirect
2021-12-11 01:59:51 +01:00
github.com/AlekSi/pointer v1.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
2022-02-01 18:11:52 +01:00
github.com/emersion/go-sasl v0.0.0-20211008083017-0b9dcfb154ac // indirect
2021-11-02 19:08:21 +01:00
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.2 // indirect
2022-02-01 18:11:52 +01:00
github.com/google/go-cmp v0.5.7 // indirect
2022-03-16 19:50:00 +01:00
github.com/googleapis/gax-go/v2 v2.2.0 // indirect
2021-12-11 01:59:51 +01:00
github.com/pkg/errors v0.9.1 // indirect
2021-12-07 17:45:15 +01:00
github.com/pmezard/go-difflib v1.0.0 // indirect
2021-11-02 19:08:21 +01:00
github.com/russross/blackfriday/v2 v2.1.0 // indirect
go.opencensus.io v0.23.0 // indirect
2022-03-16 19:50:00 +01:00
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect
2021-11-02 19:08:21 +01:00
golang.org/x/text v0.3.7 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.7 // indirect
2022-03-16 19:50:00 +01:00
google.golang.org/genproto v0.0.0-20220314164441-57ef72a4c106 // indirect
google.golang.org/grpc v1.45.0 // indirect
2021-11-02 19:08:21 +01:00
google.golang.org/protobuf v1.27.1 // indirect
2021-12-07 17:45:15 +01:00
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
2021-11-02 19:08:21 +01:00
)