forked from beeper/bridge-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
39 lines (36 loc) · 1.42 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module github.com/beeper/bridge-manager
go 1.20
require (
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/fatih/color v1.16.0
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
github.com/rs/zerolog v1.31.0
github.com/schollz/progressbar/v3 v3.14.1
github.com/tidwall/gjson v1.17.0
github.com/urfave/cli/v2 v2.26.0
go.mau.fi/util v0.2.1
golang.org/x/exp v0.0.0-20231206192017-f3f8817b8deb
maunium.net/go/mautrix v0.16.2
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/tidwall/sjson v1.2.5 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/crypto v0.15.0 // indirect
golang.org/x/net v0.18.0 // indirect
golang.org/x/sys v0.14.0 // indirect
golang.org/x/term v0.14.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
maunium.net/go/maulogger/v2 v2.4.1 // indirect
)