-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgo.mod
30 lines (27 loc) · 969 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
module github.com/fchimpan/gh-workflow-stats
go 1.23.0
require (
github.com/briandowns/spinner v1.23.1
github.com/cli/go-gh/v2 v2.11.1
github.com/fatih/color v1.18.0
github.com/gofri/go-github-ratelimit v1.1.0
github.com/google/go-github/v60 v60.0.0
github.com/montanaflynn/stats v0.7.1
github.com/spf13/cobra v1.8.1
github.com/stretchr/testify v1.10.0
)
require (
github.com/cli/safeexec v1.0.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/term v0.13.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)