-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
57 lines (54 loc) · 2.29 KB
/
go.mod
File metadata and controls
57 lines (54 loc) · 2.29 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
module github.com/shinanca/gonec
go 1.18
require (
github.com/Kelwing/mc-rcon v0.0.0-20220214194105-bec8dcbccc3f
github.com/aymerick/raymond v2.0.2+incompatible
github.com/beevik/etree v1.2.0
github.com/boltdb/bolt v1.3.1
github.com/boombuler/barcode v1.0.1
github.com/covrom/decnum v0.0.0-20181120130125-279518e708a6
github.com/daviddengcn/go-colortext v1.0.0
github.com/dchest/siphash v1.2.3
github.com/djimenez/iconv-go v0.0.0-20160305225143-8960e66bd3da
github.com/hashicorp/go-cleanhttp v0.5.2
github.com/hashicorp/go-rootcerts v1.0.2
github.com/hashicorp/serf v0.9.8
github.com/ivahaev/go-xlsx-templater v0.0.0-20200217104802-1394ee35aab8
github.com/jordan-wright/email v4.0.1-0.20210109023952-943e75fe5223+incompatible
github.com/mattn/go-isatty v0.0.14
github.com/satori/go.uuid v1.2.0
github.com/tealeg/xlsx v1.0.5
github.com/xuri/excelize/v2 v2.8.0
modernc.org/sqlite v1.17.3
moul.io/number-to-words v0.7.0
)
require (
github.com/armon/go-metrics v0.4.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
github.com/richardlehane/mscfb v1.0.4 // indirect
github.com/richardlehane/msoleps v1.0.3 // indirect
github.com/xuri/efp v0.0.0-20230802181842-ad255f2331ca // indirect
github.com/xuri/nfp v0.0.0-20230819163627-dc951e3ffe1a // indirect
golang.org/x/crypto v0.12.0 // indirect
golang.org/x/mod v0.8.0 // indirect
golang.org/x/net v0.14.0 // indirect
golang.org/x/sys v0.12.0 // indirect
golang.org/x/text v0.12.0 // indirect
golang.org/x/tools v0.6.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
lukechampine.com/uint128 v1.1.1 // indirect
modernc.org/cc/v3 v3.36.0 // indirect
modernc.org/ccgo/v3 v3.16.6 // indirect
modernc.org/libc v1.16.7 // indirect
modernc.org/mathutil v1.4.1 // indirect
modernc.org/memory v1.1.1 // indirect
modernc.org/opt v0.1.1 // indirect
modernc.org/strutil v1.1.1 // indirect
modernc.org/token v1.0.0 // indirect
)