-
Notifications
You must be signed in to change notification settings - Fork 7
/
go.mod
33 lines (28 loc) · 952 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
29
30
31
32
33
module main
go 1.18
require (
github.com/panjf2000/ants/v2 v2.7.1
github.com/valyala/fastjson v1.6.4
)
require github.com/go-ini/ini v1.67.0
require (
github.com/gookit/color v1.5.4
github.com/tealeg/xlsx/v3 v3.3.2
github.com/tidwall/gjson v1.16.0
golang.org/x/text v0.6.0
)
require (
github.com/frankban/quicktest v1.14.6 // indirect
github.com/google/btree v1.0.0 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/peterbourgon/diskv/v3 v3.0.1 // indirect
github.com/rogpeppe/fastuuid v1.2.0 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/shabbyrobe/xmlwriter v0.0.0-20200208144257-9fca06d00ffa // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
golang.org/x/sys v0.10.0 // indirect
)