forked from tom--bo/mysql-query-replayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
23 lines (20 loc) · 728 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
module github.com/tom--bo/mysql-query-replayer
go 1.19
require (
github.com/garyburd/redigo v1.6.4
github.com/go-sql-driver/mysql v1.7.1
github.com/google/gopacket v1.1.19
github.com/labstack/echo v3.3.10+incompatible
github.com/tom--bo/mysql-packet-deserializer v0.0.0-20220313094008-b66f1c4334df
)
require (
github.com/labstack/gommon v0.4.0 // indirect
github.com/mattn/go-colorable v0.1.11 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
golang.org/x/crypto v0.12.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/text v0.12.0 // indirect
)