mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-10-31 17:11:13 +01:00
58 lines
2.4 KiB
Modula-2
58 lines
2.4 KiB
Modula-2
module heckel.io/ntfy
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
cloud.google.com/go/firestore v1.6.1 // indirect
|
|
cloud.google.com/go/storage v1.25.0 // indirect
|
|
github.com/BurntSushi/toml v1.2.0 // indirect
|
|
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
|
|
github.com/emersion/go-smtp v0.15.0
|
|
github.com/gabriel-vasile/mimetype v1.4.1
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/mattn/go-sqlite3 v1.14.15
|
|
github.com/olebedev/when v0.0.0-20211212231525-59bd4edcf9d6
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/urfave/cli/v2 v2.11.2
|
|
golang.org/x/crypto v0.0.0-20220817201139-bc19a97f63c8
|
|
golang.org/x/oauth2 v0.0.0-20220808172628-8227340efae7 // indirect
|
|
golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde
|
|
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035
|
|
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9
|
|
google.golang.org/api v0.93.0
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require github.com/pkg/errors v0.9.1 // indirect
|
|
|
|
require firebase.google.com/go/v4 v4.8.0
|
|
|
|
require (
|
|
cloud.google.com/go v0.103.0 // indirect
|
|
cloud.google.com/go/compute v1.9.0 // indirect
|
|
cloud.google.com/go/iam v0.3.0 // indirect
|
|
github.com/AlekSi/pointer v1.2.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/emersion/go-sasl v0.0.0-20211008083017-0b9dcfb154ac // indirect
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/go-cmp v0.5.8 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/googleapis/enterprise-certificate-proxy v0.1.0 // indirect
|
|
github.com/googleapis/gax-go/v2 v2.5.1 // indirect
|
|
github.com/googleapis/go-type-adapters v1.0.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/russross/blackfriday/v2 v2.1.0 // indirect
|
|
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
|
|
go.opencensus.io v0.23.0 // indirect
|
|
golang.org/x/net v0.0.0-20220812174116-3211cb980234 // indirect
|
|
golang.org/x/sys v0.0.0-20220818161305-2296e01440c6 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/appengine/v2 v2.0.2 // indirect
|
|
google.golang.org/genproto v0.0.0-20220819174105-e9f053255caa // indirect
|
|
google.golang.org/grpc v1.48.0 // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|