-
Notifications
You must be signed in to change notification settings - Fork 45
/
go.mod
41 lines (37 loc) · 1.43 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
40
41
module github.com/beeper/bridge-manager
go 1.22.0
toolchain go1.23.1
require (
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/fatih/color v1.17.0
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
github.com/rs/zerolog v1.33.0
github.com/schollz/progressbar/v3 v3.15.0
github.com/tidwall/gjson v1.17.3
github.com/urfave/cli/v2 v2.27.4
go.mau.fi/util v0.8.0
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0
maunium.net/go/mautrix v0.21.0
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.4 // 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.7 // 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-20240521201337-686a1a2994c1 // indirect
golang.org/x/crypto v0.27.0 // indirect
golang.org/x/net v0.29.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/term v0.24.0 // indirect
golang.org/x/text v0.18.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)