-
Notifications
You must be signed in to change notification settings - Fork 14
/
go.mod
38 lines (34 loc) · 1.14 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
module github.com/mstxq17/MoreFind
go 1.19
require (
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/spf13/cobra v1.4.0
golang.org/x/net v0.15.0
mvdan.cc/xurls/v2 v2.4.0
)
require (
github.com/Masterminds/semver/v3 v3.2.1
github.com/cheggaaa/pb/v3 v3.1.4
github.com/google/go-github/v30 v30.1.0
github.com/minio/selfupdate v0.6.0
github.com/pbnjay/grate v0.0.0-20231006022435-3f8e65d74a14
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.0
github.com/tealeg/xlsx v1.0.5
)
require (
aead.dev/minisign v0.2.0 // indirect
github.com/VividCortex/ewma v1.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.15.0 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.13.0 // indirect
golang.org/x/sys v0.12.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)