-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
32 lines (29 loc) · 1.01 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
module github.com/SystemCraftsman/rust-operator-plugins
go 1.23.4
require (
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.36.2
github.com/sirupsen/logrus v1.9.3
github.com/spf13/pflag v1.0.6
k8s.io/apimachinery v0.32.2
sigs.k8s.io/kubebuilder/v4 v4.5.1
)
require (
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/gobuffalo/flect v1.0.3 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/spf13/afero v1.12.0 // indirect
github.com/stretchr/testify v1.10.0 // indirect
golang.org/x/mod v0.23.0 // indirect
golang.org/x/net v0.36.0 // indirect
golang.org/x/sync v0.11.0 // indirect
golang.org/x/sys v0.30.0 // indirect
golang.org/x/text v0.22.0 // indirect
golang.org/x/tools v0.30.0 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)