-
Notifications
You must be signed in to change notification settings - Fork 50
/
go.mod
41 lines (37 loc) · 1.49 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.4
require (
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/fatih/color v1.18.0
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
github.com/rs/zerolog v1.33.0
github.com/schollz/progressbar/v3 v3.17.1
github.com/tidwall/gjson v1.18.0
github.com/urfave/cli/v2 v2.27.5
go.mau.fi/util v0.8.3-0.20241212004537-24c1a9b1d8f6
golang.org/x/exp v0.0.0-20241210194714-1829a127f884
maunium.net/go/mautrix v0.22.1-0.20241215103154-351b49f8a893
)
require (
filippo.io/edwards25519 v1.1.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.5 // 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.31.0 // indirect
golang.org/x/net v0.32.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)