-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgo.mod
41 lines (38 loc) · 1.34 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
module gomodules.xyz/x
go 1.22.0
require (
github.com/Masterminds/semver/v3 v3.2.1
github.com/beevik/ntp v1.3.1
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/cyphar/filepath-securejoin v0.2.4
github.com/fatih/color v1.16.0
github.com/fsnotify/fsnotify v1.7.0
github.com/google/go-querystring v1.1.0
github.com/google/uuid v1.6.0
github.com/howeyc/gopass v0.0.0-20210920133722-c8aef6fb66ef
github.com/moul/http2curl v1.0.0
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.8.0
github.com/stretchr/testify v1.8.4
gomodules.xyz/go-sh v0.1.0
gomodules.xyz/homedir v0.1.0
gomodules.xyz/password-generator v0.2.9
gomodules.xyz/sets v0.2.1
k8s.io/klog/v2 v2.110.1
)
require (
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/inconshreveable/mousetrap v1.1.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/smartystreets/goconvey v1.8.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.16.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/term v0.15.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)