-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
31 lines (26 loc) · 848 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
26
27
28
29
30
31
module github.com/timsutton/speedwagon
go 1.22
toolchain go1.23.3
require (
github.com/dustin/go-humanize v1.0.1
github.com/jedib0t/go-pretty/v6 v6.6.1
github.com/schollz/progressbar/v3 v3.16.1
github.com/spf13/cobra v1.8.1
howett.net/plist v1.0.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/term v0.24.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/cavaliergopher/grab/v3 v3.0.1
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.9.0
golang.org/x/sys v0.25.0 // indirect
)