-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathgo.mod
39 lines (36 loc) · 1.36 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/voidint/tsdump
go 1.20
require (
github.com/go-sql-driver/mysql v1.7.1
github.com/olekukonko/tablewriter v0.0.5
github.com/smartystreets/goconvey v1.8.0
github.com/tealeg/xlsx/v3 v3.3.0
github.com/urfave/cli v1.22.14
golang.org/x/crypto v0.10.0
gopkg.in/yaml.v2 v2.4.0
xorm.io/xorm v1.0.4
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/frankban/quicktest v1.14.5 // indirect
github.com/golang/snappy v0.0.1 // indirect
github.com/google/btree v1.1.2 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/gopherjs/gopherjs v1.17.2 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/peterbourgon/diskv/v3 v3.0.1 // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/rogpeppe/fastuuid v1.2.0 // indirect
github.com/rogpeppe/go-internal v1.10.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/shabbyrobe/xmlwriter v0.0.0-20230525083848-85336ec334fa // indirect
github.com/smartystreets/assertions v1.13.1 // indirect
github.com/syndtr/goleveldb v1.0.0 // indirect
golang.org/x/sys v0.9.0 // indirect
golang.org/x/term v0.9.0 // indirect
golang.org/x/text v0.10.0 // indirect
xorm.io/builder v0.3.7 // indirect
)