-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
go.mod
65 lines (61 loc) · 2.63 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
module github.com/shenwei356/csvtk
go 1.17
require (
github.com/Knetic/govaluate v3.0.0+incompatible
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
github.com/botond-sipos/thist v1.1.0
github.com/cheggaaa/pb/v3 v3.1.0
github.com/expr-lang/expr v1.16.3
github.com/fatih/color v1.13.0
github.com/mattn/go-colorable v0.1.13
github.com/mattn/go-runewidth v0.0.14
github.com/mitchellh/go-homedir v1.1.0
github.com/pkg/errors v0.9.1
github.com/shenwei356/breader v0.3.2
github.com/shenwei356/go-logging v0.0.0-20171012171522-c6b9702d88ba
github.com/shenwei356/natsort v0.0.0-20220117010048-580176ad49fb
github.com/shenwei356/stable v0.1.7
github.com/shenwei356/util v0.5.3
github.com/shenwei356/xopen v0.3.1
github.com/spf13/cobra v1.8.0
github.com/tatsushid/go-prettytable v0.0.0-20141013043238-ed2d14c29939
github.com/twotwotwo/sorts v0.0.0-20160814051341-bf5c1f2b8553
github.com/xuri/excelize/v2 v2.8.0
gitlab.com/metakeule/fmtdate v1.2.2
gonum.org/v1/gonum v0.14.0
gonum.org/v1/plot v0.14.0
)
require (
git.sr.ht/~sbinet/gg v0.5.0 // indirect
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b // indirect
github.com/campoy/embedmd v1.0.0 // indirect
github.com/dsnet/compress v0.0.1 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/go-fonts/liberation v0.3.1 // indirect
github.com/go-latex/latex v0.0.0-20230307184459-12ec69307ad9 // indirect
github.com/go-pdf/fpdf v0.8.0 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/klauspost/compress v1.15.12 // indirect
github.com/klauspost/pgzip v1.2.6 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/richardlehane/mscfb v1.0.4 // indirect
github.com/richardlehane/msoleps v1.0.3 // indirect
github.com/rivo/uniseg v0.4.2 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/ulikunitz/xz v0.5.10 // 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.21.0 // indirect
golang.org/x/image v0.18.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/term v0.18.0 // indirect
golang.org/x/text v0.16.0 // indirect
)
replace github.com/miekg/dns v1.0.14 => github.com/miekg/dns v1.1.46