-
Notifications
You must be signed in to change notification settings - Fork 11
/
go.mod
28 lines (25 loc) · 869 Bytes
/
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
module github.com/xackery/talkeq
go 1.18
require (
github.com/bwmarrin/discordgo v0.27.1
github.com/fsnotify/fsnotify v1.7.0
github.com/go-sql-driver/mysql v1.7.1
github.com/gorilla/mux v1.8.1
github.com/hpcloud/tail v1.0.0
github.com/jbsmith7741/toml v0.3.1-0.20171003150610-484e047de162
github.com/rs/zerolog v1.31.0
github.com/ziutek/telnet v0.0.0-20180329124119-c3b780dc415b
go.uber.org/zap v1.26.0
golang.org/x/text v0.15.0
)
require (
github.com/gorilla/websocket v1.5.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
gopkg.in/fsnotify.v1 v1.4.7 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
)