-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
43 lines (37 loc) · 1.36 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
module github.com/rwx-research/mint-cli
go 1.22.0
toolchain go1.23.0
require (
github.com/briandowns/spinner v1.23.1
github.com/kopoli/go-terminal-size v0.0.0-20170219200355-5c97524c8b54
github.com/magefile/mage v1.15.0
github.com/manifoldco/promptui v0.9.0
github.com/onsi/ginkgo/v2 v2.22.2
github.com/onsi/gomega v1.36.2
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.8.1
golang.org/x/crypto v0.31.0
golang.org/x/term v0.27.0
)
require github.com/mattn/go-isatty v0.0.20 // indirect
require (
github.com/chzyer/readline v1.5.1 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/go-logr/logr v1.4.2 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/tools v0.28.0 // indirect
)