-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
25 lines (22 loc) · 893 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
module github.com/lfaoro/trailblaze
go 1.19
require (
github.com/denisbrodbeck/machineid v1.0.1
github.com/fatih/color v1.13.0
github.com/schollz/progressbar/v3 v3.10.0
github.com/sirupsen/logrus v1.9.0
github.com/urfave/cli/v2 v2.14.0
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/rivo/uniseg v0.3.4 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/stretchr/testify v1.8.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 // indirect
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect
)