-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
45 lines (40 loc) · 1.44 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
module github.com/guionardo/go-dev
go 1.20
require (
github.com/c-bata/go-prompt v0.2.6
github.com/google/go-github/v45 v45.2.0
github.com/guionardo/go-gstools v0.10.2
github.com/mattn/go-isatty v0.0.19
github.com/schollz/progressbar/v3 v3.13.1
github.com/urfave/cli/v2 v2.25.7
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/klauspost/compress v1.16.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-tty v0.0.5 // indirect
github.com/pkg/term v1.2.0-beta.2 // indirect
github.com/ulikunitz/xz v0.5.11 // indirect
)
require (
github.com/TwiN/go-choice v1.2.0
github.com/gdamore/encoding v1.0.0 // indirect
github.com/gdamore/tcell/v2 v2.6.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
golang.org/x/text v0.11.0 // indirect
)
require (
github.com/codeclysm/extract/v3 v3.1.1
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/h2non/filetype v1.1.3 // indirect
github.com/juju/errors v1.0.0 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/rivo/uniseg v0.4.4 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/crypto v0.11.0 // indirect
golang.org/x/sys v0.10.0 // indirect
golang.org/x/term v0.10.0 // indirect
)