-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
54 lines (46 loc) · 1.51 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
44
45
46
47
48
49
50
51
52
53
54
module github.com/rwx-research/captain-cli
go 1.20
require (
github.com/bradleyjkemp/cupaloy v2.3.0+incompatible
github.com/google/uuid v1.3.0
github.com/magefile/mage v1.14.0
github.com/onsi/gomega v1.33.1
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.6.1
go.uber.org/zap v1.24.0
golang.org/x/sync v0.7.0
)
require github.com/mattn/go-shellwords v1.0.12
require github.com/mileusna/useragent v1.2.1
require (
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
github.com/blang/semver/v4 v4.0.0
github.com/bmatcuk/doublestar/v4 v4.7.1
github.com/mitchellh/go-wordwrap v1.0.1
)
require (
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect
golang.org/x/tools v0.21.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)
require (
github.com/caarlos0/env/v7 v7.1.0
github.com/kr/pretty v0.3.0 // indirect
)
require (
github.com/benbjohnson/clock v1.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/onsi/ginkgo/v2 v2.19.0
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.5
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
gopkg.in/yaml.v3 v3.0.1
)