-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (21 loc) · 707 Bytes
/
go.mod
File metadata and controls
24 lines (21 loc) · 707 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
module github.com/simonkienzler/modsniffer
go 1.20
require (
github.com/Masterminds/semver/v3 v3.2.1
github.com/brumhard/alligotor v0.3.4
github.com/spf13/cobra v1.7.0
go.uber.org/zap v1.24.0
golang.org/x/mod v0.9.0
k8s.io/utils v0.0.0-20230313181309-38a27ef9d749
)
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)