-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
28 lines (24 loc) · 768 Bytes
/
go.mod
File metadata and controls
28 lines (24 loc) · 768 Bytes
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
module github.com/bmflynn/cmrfetch
go 1.20
require (
github.com/jdxcode/netrc v0.0.0-20221124155335-4616370d1a84
github.com/stretchr/testify v1.8.2
github.com/tidwall/gjson v1.14.4
)
require (
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
golang.org/x/sys v0.1.0 // indirect
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jedib0t/go-pretty/v6 v6.4.6
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/cobra v1.7.0
github.com/spf13/pflag v1.0.5
gopkg.in/yaml.v3 v3.0.1 // indirect
)