2022-10-21 14:48:03 +00:00
|
|
|
module github.com/beeper/groupme
|
2019-01-11 19:17:31 +00:00
|
|
|
|
2022-10-21 19:02:33 +00:00
|
|
|
go 1.19
|
2019-03-13 23:06:06 +00:00
|
|
|
|
2019-01-11 19:17:31 +00:00
|
|
|
require (
|
2022-10-21 21:05:58 +00:00
|
|
|
github.com/beeper/groupme-lib v0.2.1-0.20221021205945-8f23e04eea71
|
2021-03-08 01:18:13 +00:00
|
|
|
github.com/gabriel-vasile/mimetype v1.1.2
|
2021-09-16 22:19:57 +00:00
|
|
|
github.com/karmanyaahm/wray v0.0.0-20210303233435-756d58657c14
|
2022-10-21 19:02:33 +00:00
|
|
|
github.com/lib/pq v1.10.7
|
2023-03-20 00:31:16 +00:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.16
|
2021-02-13 05:53:35 +00:00
|
|
|
github.com/prometheus/client_golang v1.9.0
|
2023-03-20 00:31:16 +00:00
|
|
|
maunium.net/go/maulogger/v2 v2.4.1
|
|
|
|
maunium.net/go/mautrix v0.15.0
|
2022-10-21 19:02:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
|
|
github.com/cespare/xxhash/v2 v2.1.1 // indirect
|
2023-03-20 00:31:16 +00:00
|
|
|
github.com/coreos/go-systemd/v22 v22.3.3-0.20220203105225-a9a7ef127534 // indirect
|
2022-10-21 19:02:33 +00:00
|
|
|
github.com/golang/protobuf v1.4.3 // indirect
|
|
|
|
github.com/google/uuid v1.2.0 // indirect
|
|
|
|
github.com/gorilla/mux v1.8.0 // indirect
|
2023-03-20 00:31:16 +00:00
|
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
2022-10-21 19:02:33 +00:00
|
|
|
github.com/mattn/go-colorable v0.1.12 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
|
|
github.com/prometheus/common v0.15.0 // indirect
|
2021-02-13 05:53:35 +00:00
|
|
|
github.com/prometheus/procfs v0.6.0 // indirect
|
2023-03-20 00:31:16 +00:00
|
|
|
github.com/rs/zerolog v1.29.0 // indirect
|
|
|
|
github.com/tidwall/gjson v1.14.4 // indirect
|
2022-10-21 19:02:33 +00:00
|
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
|
|
github.com/tidwall/pretty v1.2.0 // indirect
|
|
|
|
github.com/tidwall/sjson v1.2.5 // indirect
|
2023-03-20 00:31:16 +00:00
|
|
|
github.com/yuin/goldmark v1.5.4 // indirect
|
|
|
|
go.mau.fi/zeroconfig v0.1.2 // indirect
|
|
|
|
golang.org/x/crypto v0.6.0 // indirect
|
|
|
|
golang.org/x/net v0.6.0 // indirect
|
|
|
|
golang.org/x/sys v0.5.0 // indirect
|
2021-02-13 05:53:35 +00:00
|
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
|
|
google.golang.org/protobuf v1.25.0 // indirect
|
2023-03-20 00:31:16 +00:00
|
|
|
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
|
2022-10-21 19:02:33 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2022-10-21 21:05:58 +00:00
|
|
|
maunium.net/go/mauflag v1.0.0 // indirect
|
2019-01-11 19:17:31 +00:00
|
|
|
)
|